* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f1c19;
  --muted: #6a6158;
  --accent: #8b5a3c;
  --accent-dark: #6f452e;
  --card: #ffffff;
  --line: #e6ded3;
  --highlight: #efe7dd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "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%;
  display: block;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--highlight);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent-dark);
  color: #fff;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 1.2rem;
}

.brand span {
  font-size: 0.8rem;
  color: var(--muted);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 60px;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
}

.nav-links.open {
  display: flex;
}

.hero {
  padding: 70px 0 50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.testimonial p {
  font-style: italic;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cookie-banner p {
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-toggle {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: var(--highlight);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.cookie-toggle.active {
  border-color: var(--accent);
  background: #fff;
}

.cookie-toggle span {
  font-weight: 400;
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 1100px;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-visual {
    flex: 0.8;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 280px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison .card {
    flex: 1 1 300px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
