*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --surface: #ffffff;
  --surface-alt: #f0f3f6;
  --text: #1f2933;
  --muted: #52606d;
  --brand: #0d3b4c;
  --brand-light: #1b6b7c;
  --accent: #c48b2c;
  --border: #d7dee3;
  --shadow: 0 18px 40px rgba(13, 59, 76, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--brand);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  padding: 1rem;
  position: absolute;
  top: 64px;
  right: 5vw;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--highlight {
  background: var(--brand);
  color: #fff;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.section p {
  color: var(--muted);
}

.section--highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  margin: 0;
}

.hero-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-alt);
  color: var(--brand);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--text {
  background: transparent;
  color: var(--brand);
  padding: 0;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  color: var(--brand);
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.4rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.faq-answer {
  margin-top: 0.8rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.testimonial span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--brand);
}

.contact-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--border);
}

.site-footer {
  background: #0b1f29;
  color: #fff;
  padding: 3rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.84);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 -12px 30px rgba(13, 59, 76, 0.18);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 32, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: var(--surface);
  border-radius: 22px;
  max-width: 620px;
  width: 100%;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.icon-button {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.toggle-button {
  align-self: flex-start;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  font-weight: 600;
}

.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-panel {
  background: var(--surface);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--brand);
}

@media (min-width: 768px) {
  .site-nav {
    position: static;
    flex-direction: row;
    display: flex;
    gap: 1.4rem;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1rem);
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonial-grid {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-toggle {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
