* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --ink: #1f2a2e;
  --muted: #4b5a61;
  --accent: #2c6f73;
  --accent-dark: #1c4f52;
  --sand: #efe7dc;
  --sage: #d9e2dc;
  --highlight: #f3e2c9;
  --border: #d6cdc1;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.tinted {
  background: var(--sage);
}

.section.highlight {
  background: var(--highlight);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  max-width: 720px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.brand img {
  width: 36px;
  height: 36px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.menu a {
  padding: 6px 0;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 18px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.hero {
  padding: 80px 0 72px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: transparent;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-row img {
  width: 40px;
  height: 40px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border-left: 6px solid var(--accent);
  font-style: italic;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item .answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-panel p {
  color: #f7f7f7;
}

footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 90%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-content .option {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.modal-content .option:last-child {
  border-bottom: none;
}

.switch {
  width: 46px;
  height: 26px;
  background: var(--border);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
}

.switch span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}

.switch.active {
  background: var(--accent);
}

.switch.active span {
  transform: translateX(20px);
}

@media (min-width: 720px) {
  .hero-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .service-card,
  .testimonial {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 9px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .testimonial-list {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 719px) {
  .menu {
    display: none;
  }
}
