* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2c;
  --muted: #566064;
  --accent: #2f7d73;
  --accent-dark: #245e56;
  --sand: #f4f1ec;
  --mist: #eef2f2;
  --panel: #ffffff;
  --border: #d9e0e1;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #fafafa;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost:hover,
.btn.ghost:focus {
  background: var(--accent);
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--panel);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(31, 42, 44, 0.08);
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--border);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 0.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.3rem;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
}

.quote p {
  color: #fff;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-pill {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: #fff;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item .answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  background: var(--mist);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer {
  background: #111a1c;
  color: #fff;
  padding: 2.5rem 0;
}

footer p,
footer a {
  color: #c4d0d0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(31, 42, 44, 0.2);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 23, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  width: min(520px, 100%);
}

.modal-content h3 {
  margin-bottom: 0.75rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.8rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-highlights {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 30%;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonial-grid {
    display: flex;
    gap: 1.5rem;
  }

  .testimonial-grid .testimonial {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
