* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f3f0;
  --text: #1f1b1a;
  --muted: #5b524f;
  --primary: #7b2d2a;
  --secondary: #b07a4e;
  --accent: #3a5f6b;
  --border: #dfd5cf;
  --panel: #ffffff;
  --shadow: 0 14px 32px rgba(31, 27, 26, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-toggle {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid var(--border);
}

.site-nav.is-open {
  transform: translateY(0);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 8px 0;
  color: var(--muted);
  font-weight: 600;
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 0 64px;
}

.section {
  padding: 32px 0;
}

.section-alt {
  background: #fff;
}

.section-highlight {
  background: #f0e7e1;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 24px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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 h3 {
  font-size: 1.2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item img {
  width: 40px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.testimonial {
  background: var(--panel);
  border-left: 4px solid var(--secondary);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a,
.footer-links button {
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 20px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 26, 0.4);
}

.cookie-modal-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8f5f2;
}

.cookie-toggle span {
  font-weight: 600;
}

.cookie-toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.85rem;
}

.cookie-toggle button[aria-pressed="false"] {
  background: #cdb8aa;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .header-inner {
    gap: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
  }

  .nav-links {
    flex-direction: row;
    gap: 18px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .comparison-row {
    flex: 1 1 240px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions,
  .cookie-modal-actions {
    flex-direction: row;
  }
}
