*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --bg-alt: #ece7e0;
  --ink: #1f1b16;
  --muted: #5b5248;
  --brand: #3c2a1d;
  --accent: #b98353;
  --accent-soft: #e7c6a8;
  --border: #d9d2c8;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(31, 27, 22, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 239, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-toggle {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--brand);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 64px;
  min-width: 220px;
}

.primary-nav a {
  font-weight: 600;
  color: var(--brand);
}

.primary-nav.is-open {
  display: flex;
}

.hero {
  padding: 80px 0 72px;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.quote {
  font-style: italic;
  color: var(--ink);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--accent-soft);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 12px;
}

.step span {
  font-weight: 700;
  color: var(--brand);
}

.cta-panel {
  background: var(--brand);
  color: var(--white);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 27, 22, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px;
}

.switch button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.switch button.is-on {
  background: var(--accent);
  color: var(--white);
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 18px;
  }

  .hero .hero-grid,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-metrics {
    flex: 0.9;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
  }

  .feature-item {
    flex: 1;
  }

  .stats-bar {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .service-card {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner.is-visible {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
