@charset "utf-8";
@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: 1s;
}
/* --- CSS VARIABLES & RESET --- */
:root {
  --bg-color: #f8f9fa;
  --text-main: #1e293b;
  --text-light: #475569;
  --accent: #0f172a; /* Dark Slate */
  --primary: #2563eb; /* Corporate Blue */
  --white: #ffffff;
  --max-width: 1500px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bb {
  border: #2563eb 2px solid;
}

.br {
  border: red 2px solid;
}

li {
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  list-style: disc;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.5s ease;
  border: 1px solid var(--primary);
}

.btn:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: scale(1.05);
  text-decoration: none;
}

.section-padding {
  padding: 30px 0;
}
.text80 {
  max-width: 80ch;
}
.space1 {
  margin-bottom: 1rem;
}
/* --- HEADER --- */
header {
  background-color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

header nav .logo img {
  max-width: 100%;
  height: auto;
}

header nav .logo a:hover {
  text-decoration: none;
}

.contact-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.5s ease;
  margin-left: 20px;
}

.contact-link:hover {
  background-color: var(--accent);
  transform: scale(1.05);
  text-decoration: none;
}

header nav .nav-links {
  display: flex;
  gap: 30px;
}

header nav .nav-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

header nav .nav-links a:hover {
  color: var(--primary);
}

header nav #menu-toggle {
  display: none;
}

header nav .hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

header nav .hamburger:hover {
  background-color: #f1f5f9;
}

header nav .hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--accent);
  margin: 5px 0;
  transition: 0.3s;
  position: relative;
}

/* --- HERO SECTION --- */
.hero {
  background-color: var(--white);
  padding: 0 0 80px;
  text-align: left;
}

.hero .hero-image {
  width: 100%;
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .hero-content {
  display: flex;
  max-width: 1300px;
  margin-top: 40px;
  gap: 20px;
  align-items: center;
}

.hero .hero-graphic {
  max-width: 100%;
  height: auto;
}

.hero .label {
  display: inline-block;
  background-color: #eff6ff;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
@media screen and (max-width: 480px) {
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 650px;
}

/* --- COMPARISON GRID (Benefits) --- */
.comparison {
  background-color: var(--bg-color);
}

.comparison .section-header {
  margin-bottom: 60px;
}

.comparison .section-header h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.comparison .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.comparison .three-grid {
  grid-template-columns: repeat(3, 1fr);
}
.form-section {
  margin-top: -20px;
}
@media (max-width: 768px) {
  .comparison .three-grid {
    grid-template-columns: 1fr;
  }
  .comparison .three-grid .card {
    grid-column: auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .comparison .three-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison .card {
  background: var(--white);
  padding: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: var(--transition);
}

.comparison .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.comparison .icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.comparison .card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.comparison .card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- STATS SECTION --- */
.stats-bar {
  background-color: var(--accent);
  color: var(--white);
  padding: 60px 0;
}

.stats-bar .stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stats-bar .stat-item h4 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.stats-bar .stat-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CONTACT CTA --- */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

/* --- RESPONSIVE Menu --- */
@media (max-width: 768px) {
  header nav .hamburger {
    display: block;
    z-index: 101;
  }

  header nav .logo img {
    max-width: 150px;
  }

  header nav .nav-links {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  header nav .nav-links a {
    font-size: 1rem;
    padding: 10px 0;
  }

  #menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  #menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 2rem 0 1rem;
    flex-direction: column;
  }

  .hero p {
    margin: 0 auto 30px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 40px;
  }
}

/* --- FOOTER --- */
.cta-section p {
  margin-bottom: 30px;
  color: var(--text-light);
}

footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  font-size: 0.8rem;
  color: #94a3b8;
  max-width: 98%;
}

footer div {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
}

/* --- FORM STYLES --- */
form {
  max-width: 600px;
  margin: 0 auto;
}

form div {
  margin-bottom: 15px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 1rem;
}

form textarea {
  height: 100px;
  resize: vertical;
}

form input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

form p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

form button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.hero ~ section {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --- EXAMPLES / FEATURE ROWS --- */
.horcont,
.horcontr {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.horcontr {
  flex-direction: row-reverse;
}

.contentbox {
  flex: 1;
}

.contentbox img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 900px) {
  .horcont,
  .horcontr {
    flex-direction: column;
    gap: 30px;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent);
  color: var(--white);

  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 3rem;
    text-align: left;
  }
  .cookie-banner p {
    margin: 0;
    max-width: 85%;
  }
}

.cookie-banner a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-banner__button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-banner__button:hover {
  background-color: var(--white);
  color: var(--primary);
}
