*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f1d1a;
  background-color: #f7f2ec;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background-color: #f0e7dd;
}

.section.dark {
  background-color: #2c2722;
  color: #f7f2ec;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #d6c4b2;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0;
}

.subheadline {
  font-size: 1.1rem;
  max-width: 650px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid transparent;
  background-color: #b96f3c;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background-color: transparent;
  border-color: #b96f3c;
  color: #b96f3c;
}

.btn.light {
  background-color: #ffffff;
  color: #2c2722;
}

.btn:focus-visible {
  outline: 2px solid #2c2722;
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

header {
  background-color: #f7f2ec;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e4d6c7;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.8px;
}

.menu-toggle {
  background: transparent;
  border: 1px solid #b96f3c;
  color: #b96f3c;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(31, 29, 26, 0.85);
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 24px 24px;
}

.site-nav.open {
  display: flex;
}

.nav-panel {
  background-color: #f7f2ec;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid #e7d7c8;
}

.nav-meta {
  font-size: 0.95rem;
  color: #6a5d52;
}

.hero {
  padding: 70px 0 40px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #efe0d4;
}

.card.alt {
  background-color: #f5e9dd;
}

.card strong {
  font-size: 1.1rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #d6c4b2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #efe0d4;
}

.stat strong {
  font-size: 1.6rem;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #efe0d4;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #b96f3c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border-left: 4px solid #b96f3c;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid #efe0d4;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0 0 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #efe0d4;
}

.footer {
  background-color: #2c2722;
  color: #f7f2ec;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-meta {
  font-size: 0.9rem;
  color: #d6c4b2;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  background-color: rgba(31, 29, 26, 0.85);
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 18px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    background: transparent;
    padding: 0;
  }

  .nav-panel {
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    gap: 24px;
  }

  .nav-links {
    flex-direction: row;
    gap: 20px;
  }

  .nav-links a {
    border-bottom: none;
    padding: 0;
  }

  .hero-grid,
  .split,
  .card-grid,
  .stats,
  .process,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-grid > * {
    flex: 1 1 320px;
  }

  .card-grid .card,
  .stats .stat {
    flex: 1 1 240px;
  }

  .split > * {
    flex: 1 1 320px;
  }

  .process-step,
  .comparison-row {
    flex: 1 1 260px;
  }

  .hero-actions,
  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
  }
}
