* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --cream: #f8f2e9;
  --sand: #e6d6c1;
  --wood: #9c6b3d;
  --forest: #2e4b3f;
  --clay: #c58f5c;
  --ink: #1f1f1f;
  --muted: #5d5d5d;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--white);
}

.section.sand {
  background: var(--sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--forest);
  color: var(--forest);
  background: transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--forest);
  color: var(--white);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.15);
}

header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--forest);
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 70px;
  right: 4%;
  width: min(260px, 90%);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-grid .panel {
  background: var(--sand);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.panel svg {
  width: 42px;
  height: 42px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card .price {
  font-weight: 700;
  color: var(--forest);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature svg {
  width: 30px;
  height: 30px;
  margin-top: 0.2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--forest);
}

.quote {
  background: var(--forest);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
}

.quote p {
  color: var(--white);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 14px;
  border-left: 4px solid var(--clay);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, 0.2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
  gap: 1rem;
}

.faq-answer {
  margin-top: 0.8rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--clay);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta p {
  color: var(--white);
}

footer {
  background: var(--forest);
  color: var(--white);
  padding: 2.5rem 0;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  width: min(920px, 92%);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal .options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-block {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 760px) {
  h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-grid {
    flex: 1;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .cards,
  .feature-list,
  .pillars {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .feature-list .feature,
  .pillars .pillar {
    flex: 1 1 calc(33% - 1rem);
  }

  .split,
  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div,
  .two-col > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
