* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f1;
  --surface: #ffffff;
  --text: #2b2725;
  --muted: #6f645d;
  --primary: #b25b39;
  --primary-dark: #8f4326;
  --accent: #e2b08a;
  --highlight: #f1e1d6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid #e5ded9;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 0.5rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: var(--highlight);
}

.section-header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: var(--primary);
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #eadfd8;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-row svg {
  width: 34px;
  height: 34px;
  fill: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.testimonial {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.95rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-step span {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid #eadfd8;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: var(--surface);
  border: 1px solid #e2d7cf;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  background: #1f1b19;
  color: #f5f0eb;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #f5f0eb;
}

.footer small {
  color: #cbbfb7;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border-radius: 16px;
  padding: 1.2rem;
  width: min(520px, 92%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(22, 19, 18, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.8rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee4de;
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-btn {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-btn.is-active {
  background: var(--primary);
  color: #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--surface);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-visual {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 1rem);
  }

  .split {
    flex-direction: row;
  }

  .stat-grid {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }
}
