* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --ink: #1f1c1a;
  --muted: #5e544c;
  --accent: #7b4d2a;
  --accent-2: #2a3b2f;
  --panel: #ffffff;
  --soft: #efe7e0;
  --border: #e1d6cd;
  --shadow: 0 10px 30px rgba(33, 26, 20, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--accent-2);
  color: #f8f5f2;
}

.section .section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  background: #8a5a34;
  transform: translateY(-1px);
}

.button.outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button.light {
  background: #fff;
  color: var(--accent-2);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.simple {
  box-shadow: none;
  background: transparent;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-2);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent-2);
}

.testimonial {
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.8rem;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
}

.nav-links {
  display: none;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31, 28, 26, 0.4);
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-panel {
  background: #fff;
  width: min(300px, 85%);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-panel a {
  font-weight: 600;
  color: var(--accent-2);
}

.footer {
  background: #151312;
  color: #f1ede9;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.hero {
  padding: 64px 0 48px;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  flex: 1;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--panel);
}

.accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-panel {
  margin-top: 10px;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  align-items: flex-start;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  z-index: 50;
}

.cookie-banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  inset: 0;
  background: rgba(20, 18, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  width: min(520px, 95%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

.switch {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 600;
}

.switch[aria-pressed="true"] {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--panel);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.divider {
  height: 2px;
  background: var(--border);
  margin: 18px 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(33% - 16px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison .card {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 calc(50% - 18px);
  }
}
