:root {
  --bg: #f7f4f0;
  --bg-alt: #ffffff;
  --text: #1f1a16;
  --muted: #5b514a;
  --brand: #8a3f3a;
  --brand-soft: #f2d7d0;
  --accent: #2e5b4d;
  --border: #e6ddd6;
  --shadow: 0 8px 24px rgba(31, 26, 22, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 12px 0 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.nav-panel.is-open {
  display: flex;
}

.nav-panel a {
  padding: 10px 24px;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0 60px;
}

.section {
  padding: 24px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section .section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.hero {
  background: linear-gradient(120deg, var(--brand-soft), #fff6f2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin: 0;
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius);
  font-size: 1.05rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
  display: block;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--bg-alt);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item button span {
  font-weight: 600;
}

.faq-content {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-content {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid var(--border);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer {
  background: var(--text);
  color: #fff;
  padding: 40px 0;
}

.footer .footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #fff;
  opacity: 0.8;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.notice {
  padding: 16px;
  background: var(--brand-soft);
  border-radius: var(--radius);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--text);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-actions .btn {
  width: 100%;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 22, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
  width: min(540px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pref-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pref-item {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pref-toggle {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 600;
}

.pref-toggle.is-active {
  background: var(--brand);
  color: #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-panel {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
  }

  .hero .hero-actions {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 240px;
  }

  .footer .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
