*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f8f5f0;
  --text: #1f1b16;
  --muted: #6a5f54;
  --accent: #8a3d2c;
  --accent-dark: #6f2f21;
  --light: #ffffff;
  --panel: #efe7dc;
  --border: #d8cabb;
+}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 0 64px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--panel);
  padding: 32px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, border 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
  color: var(--light);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--accent);
  color: var(--light);
}

header {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 24px;
}

.mobile-nav.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero-panel {
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-grid,
.card-grid,
.stats-grid,
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #fff8f1;
  border-color: #e8d7c6;
}

.icon {
  width: 44px;
  height: 44px;
}

.stats-grid .card {
  text-align: center;
  gap: 4px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial span {
  font-weight: 600;
  color: var(--text);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--light);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: var(--light);
}

.faq-trigger {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-content {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  background: var(--light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 94%);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 24px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--panel);
  font-size: 0.85rem;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.info-block {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1;
  }

  .feature-grid,
  .card-grid,
  .stats-grid,
  .faq-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-grid .card,
  .card-grid .card,
  .stats-grid .card,
  .faq-grid .faq-item {
    flex: 1 1 calc(50% - 20px);
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-col > div {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .feature-grid .card,
  .card-grid .card,
  .faq-grid .faq-item {
    flex: 1 1 calc(33.333% - 20px);
  }

  .stats-grid .card {
    flex: 1 1 calc(25% - 20px);
  }
}
