* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --charcoal: #1e1c1a;
  --ember: #c65a2d;
  --amber: #e3a93b;
  --sage: #6b7a5a;
  --sand: #f7f2ea;
  --stone: #efe7dc;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(30, 28, 26, 0.12);
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(30, 28, 26, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ember);
  color: var(--white);
  font-size: 20px;
}

.menu-toggle {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 28, 26, 0.2);
  font-weight: 600;
}

.main-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: 4%;
  top: 72px;
  background: var(--white);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-width: 200px;
}

.main-nav a {
  font-weight: 600;
  color: var(--charcoal);
}

.main-nav.open {
  display: flex;
}

.hero {
  padding: 64px 0 48px;
  background: var(--white);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 2.5vw + 1.6rem, 3.4rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ember);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
}

.button.secondary {
  background: transparent;
  color: var(--ember);
  border-color: var(--ember);
}

section {
  padding: 52px 0;
}

.section-alt {
  background: var(--stone);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 1.2vw + 1.3rem, 2.3rem);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(30, 28, 26, 0.08);
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ember);
}

.testimonial {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.1rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(30, 28, 26, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
}

.faq-answer {
  display: none;
  color: rgba(30, 28, 26, 0.8);
}

.faq-item.open .faq-answer {
  display: block;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(30, 28, 26, 0.1);
  font-weight: 600;
}

.highlight-panel {
  background: var(--charcoal);
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(30, 28, 26, 0.08);
}

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  width: min(540px, 92%);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 28, 26, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--stone);
  border-radius: 14px;
  font-weight: 600;
}

.toggle-button {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(30, 28, 26, 0.2);
  font-weight: 600;
}

.toggle-button.active {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }
}
