* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --bg-alt: #ffffff;
  --bg-dark: #101216;
  --text: #1a1d22;
  --muted: #5f6671;
  --accent: #c9a66b;
  --accent-dark: #9b7c4b;
  --border: #e3d8c6;
  --success: #2b6f5d;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: #f8f5ef;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
  color: var(--muted);
}

.section-dark p {
  color: #d9d3c9;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  position: absolute;
  right: 4%;
  top: 70px;
  width: 220px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.nav-menu.open {
  display: flex;
}

.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-menu a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #1a1d22;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  border-radius: 24px;
  padding: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: #efe6d8;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #efe6d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border-radius: 20px;
  padding: 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.card p {
  margin-bottom: 0;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
}

.quote {
  font-size: 1.2rem;
  color: #f6f1ea;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  background: var(--accent);
  color: #1a1d22;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  background: transparent;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  background: #efe6d8;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92%);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 100%);
  border: 1px solid var(--border);
}

.modal h3 {
  margin-bottom: 8px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-btn {
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  background: #efe6d8;
  font-size: 0.85rem;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

@media (min-width: 820px) {
  h1 {
    font-size: 3.1rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .card-grid,
  .stat-grid,
  .testimonial-grid,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .comparison-row {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
