*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f8f4f0;
  --bg-alt: #ffffff;
  --text: #1c1a18;
  --muted: #5a524b;
  --brand: #7a3f2a;
  --brand-dark: #5c2c1e;
  --accent: #d8b27d;
  --line: #e5ddd5;
  --success: #2f6b4f;
  --shadow: 0 16px 40px rgba(28, 26, 24, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --font: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-soft {
  background: #f1e7dc;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 16px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.button.outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.button.outline:hover,
.button.outline:focus {
  background: var(--brand);
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 244, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  gap: 22px;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  cursor: pointer;
}

.menu-toggle span {
  font-size: 0.9rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-panel {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: #efe1d3;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  padding: 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card svg,
.card img {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  padding: 22px;
  border-radius: var(--radius-sm);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--bg-alt);
  padding: 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand);
}

.quote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  margin: 0;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  color: var(--brand);
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check span {
  color: var(--success);
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.compare-row h4 {
  margin: 0;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: #2f1d17;
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
}

.cta-panel .button {
  background: var(--accent);
  color: #2f1d17;
}

.cta-panel .button:hover,
.cta-panel .button:focus {
  background: #e6c99b;
}

.footer {
  background: #1c1a18;
  color: #f5f1ed;
  padding: 48px 0 28px;
}

.footer a {
  color: #f5f1ed;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 24, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-alt);
  padding: 26px;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.toggle-button {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  border-radius: 999px;
  padding: 6px 16px;
  cursor: pointer;
}

.toggle-button[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
}

@media (min-width: 720px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(50% - 18px);
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 0;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .card {
    flex: 1 1 calc(33.333% - 18px);
  }

  .compare {
    flex-direction: row;
  }

  .compare-row {
    flex: 1 1 0;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
