* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --ink: #1d2521;
  --muted: #55625b;
  --accent: #2a5f5a;
  --accent-dark: #1d4642;
  --highlight: #e7efe9;
  --sand: #f0e9dd;
  --border: #d8dfd9;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, 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;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section.sand {
  background: var(--sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.secondary:hover {
  background: var(--highlight);
}

.tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 16px;
  background: var(--highlight);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  position: absolute;
  right: 20px;
  top: 70px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  min-width: 200px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--accent-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-highlight {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--highlight);
  border-radius: 16px;
  align-items: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--highlight);
  border-color: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote p {
  color: #e8f2ef;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.footer {
  background: #111715;
  color: #f0f6f2;
  padding: 32px 0;
}

.footer p,
.footer a {
  color: #cbd5cf;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.modal-content {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
}

.modal-content h3 {
  margin-bottom: 12px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.is-hidden {
  display: none;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--highlight);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--accent-dark);
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.6rem;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel,
  .hero-highlights {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stat-row {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 240px;
  }

  .two-col {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cookie-banner {
    max-width: 720px;
    margin: 0 auto;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    background: transparent;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }
}
