* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #2c2a27;
  --muted: #6e6a63;
  --accent: #7a4f2b;
  --accent-dark: #5c3a1f;
  --soft: #efe6db;
  --highlight: #f7ead8;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  background: var(--surface);
  border-bottom: 1px solid #e3ddd3;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
  gap: 18px;
}

.nav-toggle {
  border: 1px solid #d8cfc2;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 20px;
}

.mobile-nav.open {
  display: flex;
}

.hero {
  padding: 60px 0 40px;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--highlight);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

section {
  padding: 44px 0;
}

.panel {
  background: var(--surface);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 42, 39, 0.06);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #eee4d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e7dfd2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--surface);
  border-radius: 14px;
  padding: 22px;
  border-left: 4px solid var(--accent);
}

.quote {
  font-size: 18px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid #eadfce;
  padding: 14px 18px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-answer {
  margin-top: 10px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid #e8ddce;
  border-radius: 12px;
  padding: 14px;
}

.highlight {
  background: var(--highlight);
  border-radius: 16px;
  padding: 26px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer {
  background: #1f1c19;
  color: #f1ede7;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid #e0d7ca;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(31, 28, 25, 0.18);
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 28, 25, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .stats,
  .testimonials,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .comparison-row,
  .info-grid > div {
    flex: 1 1 240px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1 1 240px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
