:root {
  --ink: #1b2631;
  --sand: #f4f0ea;
  --stone: #e3ded7;
  --accent: #c29d62;
  --teal: #5fa8a1;
  --coal: #0f141a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.85rem;
  color: #4a5a66;
}

.nav-toggle {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 0.8rem;
  border-radius: 0.8rem;
  position: absolute;
  right: 4%;
  top: 3.4rem;
  min-width: 180px;
  box-shadow: 0 10px 24px rgba(15, 20, 26, 0.08);
}

.nav-links a {
  padding: 0.3rem 0.2rem;
  font-weight: 500;
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  background: var(--sand);
  padding: 3.2rem 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero p {
  margin: 0 0 1.2rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 2.8rem 0;
}

.section.alt {
  background: var(--sand);
}

.section h2 {
  font-size: 1.7rem;
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #5f6b75;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 26px rgba(27, 38, 49, 0.05);
}

.card .icon {
  width: 42px;
  height: 42px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.feature .dot {
  width: 10px;
  height: 10px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  border-left: 3px solid var(--teal);
  padding-left: 0.8rem;
}

.quote {
  background: var(--coal);
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
}

.quote p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.quote span {
  color: var(--accent);
  font-weight: 600;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-item {
  border: 1px solid var(--stone);
  border-radius: 0.9rem;
  padding: 1rem;
  background: var(--white);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--sand);
  color: var(--ink);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 1rem;
  padding: 1.2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--stone);
  border-radius: 0.9rem;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: #4a5a66;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 1rem;
  border-radius: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  border: 1px solid var(--stone);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 2.2rem;
  border-radius: 1.2rem;
}

.cta-panel .btn.secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.site-footer {
  background: var(--coal);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  font-size: 0.9rem;
}

.footer-meta {
  font-size: 0.85rem;
  color: #c9d0d6;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 1rem;
  padding: 1rem;
  width: min(520px, 92%);
  box-shadow: 0 20px 40px rgba(15, 20, 26, 0.2);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 26, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  z-index: 40;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.4rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  border: 1px solid var(--stone);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--sand);
  font-weight: 600;
  cursor: pointer;
}

.chip[aria-pressed="true"] {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight {
  background: var(--sand);
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--stone);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 1.2rem;
    background: transparent;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .compare {
    flex-direction: row;
  }

  .compare-item {
    flex: 1;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 260px;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-col > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
