/* Base */
:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #1f1f1f;
  --muted: #5b5b5b;
  --brand: #c46a2f;
  --brand-dark: #8f4b1f;
  --accent: #2f7a78;
  --border: #e6dfd6;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand-dark);
}

.btn.link {
  background: transparent;
  color: var(--brand-dark);
  padding: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 12px 0 20px;
}

.nav-links a {
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-card {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Cards and layouts */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-size: 20px;
  color: var(--text);
  font-style: italic;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  padding: 16px;
  border-left: 4px solid var(--brand);
  background: var(--bg-alt);
  border-radius: 12px;
}

.highlight-panel {
  background: #fff1e7;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #f4c9aa;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  background: #fff;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
}

.testimonial span {
  font-weight: 700;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 14px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #1e1b18;
  color: #f2ede6;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a,
.footer-links button {
  color: #f2ede6;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* Cookie banner and modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #1f1f1f;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 120;
}

.cookie-modal .modal-content {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 22px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f1ebe3;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-checked="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Responsive */
@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero > div {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 240px;
  }

  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .comparison .card {
    flex: 1 1 260px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
