* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --ink: #1f2a2e;
  --muted: #5b6b73;
  --brand: #1b6f5c;
  --brand-dark: #145144;
  --accent: #d9b64a;
  --white: #ffffff;
  --soft: #eef1ed;
  --shadow: 0 14px 30px rgba(15, 31, 36, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 20px;
  z-index: 10;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #dde5e1;
  z-index: 20;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--brand-dark);
}

.menu-toggle {
  border: 1px solid #c9d4cf;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: 14px 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-nav a {
  font-weight: 500;
  color: var(--ink);
}

body.nav-open .site-nav {
  display: flex;
  position: absolute;
  right: 20px;
  top: 68px;
  min-width: 190px;
}

main {
  padding-bottom: 60px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--brand-dark);
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.section-head h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero {
  padding: 72px 0 56px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero .hero-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn.ghost {
  background: transparent;
  color: inherit;
  border-color: #c5d2cc;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e1eee7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 200px;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  color: var(--brand-dark);
}

.highlight-panel {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.testimonial {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f1ec;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-row strong {
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border: 1px solid #dfe6e2;
}

.comparison .card.highlight {
  border-color: var(--brand);
  background: #f3faf7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: var(--ink);
}

.faq-item .answer {
  margin-top: 8px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--white);
  border: 1px solid #dfe6e2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.contact-card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #101a1c;
  color: #dce6e2;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-grid a {
  color: inherit;
  opacity: 0.9;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner .card {
  max-width: 720px;
  width: 100%;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 14, 16, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal .modal-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--shadow);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dfe6e2;
  padding: 12px 14px;
  border-radius: 12px;
  margin-top: 10px;
}

.cookie-option button {
  border: 1px solid #c9d4cf;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
}

.cookie-option button[aria-pressed="true"] {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 12px 0;
}

@media (min-width: 768px) {
  .card-grid,
  .stats,
  .comparison,
  .split {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    background: transparent;
    gap: 20px;
  }

  body.nav-open .site-nav {
    position: static;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
