* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3ee;
  --bg-alt: #efe6dc;
  --ink: #2b1f16;
  --muted: #6e5b4c;
  --accent: #c18f3a;
  --accent-dark: #8a5a1b;
  --card: #ffffff;
  --line: #e2d6c6;
  --radius: 14px;
  --shadow: 0 12px 28px rgba(43, 31, 22, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.brand small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--accent-dark);
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 20px;
}

.mobile-nav.is-open {
  display: flex;
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  flex: 1 1 260px;
  border: 1px solid var(--line);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff7e7;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  margin-bottom: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.hero {
  padding: 72px 0 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 34px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 200px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 22px;
  display: block;
}

.quote {
  background: #fdf7f0;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid var(--line);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}

.testimonial p {
  margin-bottom: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 31, 22, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal.is-visible {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: min(560px, 94%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.info-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.highlight {
  background: #fff2dc;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed var(--accent);
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
