* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --bg-alt: #ffffff;
  --bg-soft: #efe7df;
  --text: #2b241f;
  --muted: #6f635b;
  --accent: #9b5f39;
  --accent-dark: #6e3f26;
  --line: #ddd1c7;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 0 64px;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section {
  padding: 32px 0;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.soft {
  background: var(--bg-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.3px;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.nav-links a {
  font-weight: 500;
}

.nav-links.open {
  display: flex;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 24px;
  height: 24px;
}

.highlight {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight p {
  color: #f6f2ee;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.6rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 16px;
}

.quote p {
  color: var(--text);
  font-style: italic;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.85rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.testimonial strong {
  color: var(--text);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
}

.comparison-row h3 {
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 36, 31, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 16px;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  width: min(540px, 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
}

.toggle-btn {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 0;
  }

  .nav-toggle {
    display: none;
  }

  .cards {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .process {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}
