* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --ink: #1f2933;
  --muted: #5f6b76;
  --brand: #1f8a70;
  --brand-dark: #155f4e;
  --accent: #e0b94f;
  --soft: #eef3f1;
  --border: #d9e1e6;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  color: var(--brand-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 64px;
  right: 4%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section.soft {
  background: var(--soft);
}

.section-title {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.4rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.hero {
  padding: 72px 0 64px;
  background: linear-gradient(135deg, #f4fbf9 0%, #ffffff 60%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  background: var(--soft);
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
}

.icon-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.quote {
  padding: 24px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  list-style: none;
  color: var(--muted);
}

.feature-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--brand);
}

.testimonial {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.testimonial p {
  color: var(--muted);
}

.testimonial strong {
  display: block;
  margin-top: 12px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item button span {
  color: var(--muted);
  font-weight: 400;
  margin-left: 12px;
}

.faq-content {
  padding: 0 16px 16px;
  color: var(--muted);
}

.cta {
  background: var(--brand-dark);
  color: #fff;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background: #101820;
  color: #f5f6f7;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 138, 112, 0.12);
  color: var(--brand-dark);
  font-size: 0.88rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.highlight-panel {
  background: #fff7e1;
  border: 1px solid #f1d188;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list li {
  list-style: none;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.list li::before {
  content: "•";
  color: var(--brand);
  font-weight: 700;
  margin-right: 6px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .grid.two {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid.two .card {
    flex: 1 1 calc(50% - 20px);
  }

  .grid.three {
    flex-direction: row;
  }

  .grid.three .card,
  .grid.three .testimonial,
  .grid.three .stat {
    flex: 1 1 0;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1 1 0;
  }

  .stats {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .mobile-toggle {
    display: none;
  }
}
