*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --sand: #f7f1ea;
  --clay: #c97b63;
  --herb: #4f7a5d;
  --ink: #2a2a2a;
  --stone: #6b6762;
  --light: #ffffff;
  --accent: #f1b24a;
  --shadow: 0 18px 40px rgba(42, 42, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  border: none;
  background: var(--clay);
  color: var(--light);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  position: fixed;
  inset: 70px 16px auto 16px;
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.primary-nav a {
  font-weight: 600;
  color: var(--ink);
}

.primary-nav.is-open {
  display: flex;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 42, 0.4);
  z-index: 40;
}

.nav-overlay.is-open {
  display: block;
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    flex-direction: row;
    gap: 20px;
    display: flex;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-overlay {
    display: none;
  }
}

.hero {
  background: var(--light);
  padding: 56px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 12px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--herb);
  color: var(--light);
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: transparent;
  color: var(--herb);
  border: 2px solid var(--herb);
}

.section {
  padding: 8px 0;
}

.section-title {
  margin: 0 0 18px 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--light);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-left: 6px solid var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 28px;
  height: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--light);
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat span {
  font-weight: 700;
  color: var(--clay);
}

.testimonial {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.1rem;
  font-weight: 600;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: rgba(201, 123, 99, 0.12);
  padding: 16px;
  border-radius: 14px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--light);
  padding: 18px;
  border-radius: 14px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light);
  border-radius: 16px;
  padding: 16px 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: var(--stone);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--herb);
  color: var(--light);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer {
  background: var(--ink);
  color: var(--light);
  padding: 36px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 42, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(42, 42, 42, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--sand);
  cursor: pointer;
  font-weight: 600;
}

.highlight-panel {
  background: rgba(79, 122, 93, 0.12);
  padding: 24px;
  border-radius: 20px;
}

.list-columns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 880px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 220px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .list-columns {
    flex-direction: row;
    gap: 20px;
  }
}
