* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --navy: #1b2a41;
  --stone: #f4f1ea;
  --gold: #e2b35a;
  --teal: #2f6f73;
  --ink: #203040;
  --muted: #6f7a87;
  --cloud: #ffffff;
  --shadow: 0 16px 40px rgba(27, 42, 65, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--stone);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: var(--cloud);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(27, 42, 65, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 500;
  color: var(--ink);
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--stone);
  font-weight: 600;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--navy);
  color: var(--stone);
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 20;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--stone);
  font-weight: 600;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 65, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f4f1ea 0%, #ffffff 60%);
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-secondary {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.button-primary {
  background: var(--navy);
  color: var(--stone);
}

.button-secondary {
  background: var(--gold);
  color: var(--navy);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--cloud);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 720px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--cloud);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.alt {
  background: var(--navy);
  color: var(--stone);
}

.card .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(226, 179, 90, 0.18);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 111, 115, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: var(--cloud);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(47, 111, 115, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--navy);
}

.quote {
  background: var(--navy);
  color: var(--stone);
  padding: 32px;
  border-radius: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  list-style: none;
}

.feature-list span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 260px;
  background: var(--cloud);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.testimonial p {
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.comparison .panel {
  flex: 1 1 240px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(27, 42, 65, 0.08);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--cloud);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-item .answer {
  padding: 0 20px 18px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

.footer {
  padding: 40px 0;
  background: var(--navy);
  color: var(--stone);
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

.footer small {
  color: rgba(244, 241, 234, 0.7);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--cloud);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner .button-row {
  justify-content: flex-start;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 65, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--cloud);
  padding: 24px;
  border-radius: 18px;
  width: min(520px, 90%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  background: rgba(47, 111, 115, 0.08);
}

.cookie-toggle {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--stone);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(226, 179, 90, 0.2);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}

.section-divider {
  height: 1px;
  background: rgba(27, 42, 65, 0.1);
  margin: 32px 0;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .hero .content {
    flex: 1 1 60%;
  }

  .hero .highlight {
    flex: 1 1 40%;
  }

  .split {
    flex-direction: row;
  }
}
