:root {
  --bg: #f7f4ef;
  --text: #1f1c1a;
  --muted: #6b645f;
  --accent: #7b4f2b;
  --accent-2: #2f5f5a;
  --panel: #ffffff;
  --border: #e1d8cf;
  --shadow: 0 8px 24px rgba(31, 28, 26, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 18px 64px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: 32px 0;
}

.section.alt {
  background: #efe8df;
}

.section.panel {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(6px);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
}

.nav-toggle {
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.3s ease;
  z-index: 20;
}

.nav-open .nav-drawer {
  right: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 12px;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(123, 79, 43, 0.3);
}

.btn.secondary {
  background: #fff;
  border-color: var(--border);
}

.btn:hover {
  transform: translateY(-1px);
}

.flex-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  flex: 1 1 240px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #efe6dc;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  background: #2f5f5a;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
}

.testimonial {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--border);
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--border);
}

.footer {
  background: #1f1c1a;
  color: #f5eee5;
  padding: 32px 18px;
}

.footer a {
  color: #f5eee5;
}

.footer .columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 18px;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.preference {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.preference:last-child {
  border-bottom: none;
}

.preference button {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 720px) {
  .nav ul {
    flex-direction: row;
  }

  .nav-toggle {
    display: none;
  }

  .nav-drawer {
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    background: transparent;
    transition: none;
  }

  .nav-overlay {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-visual {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer .columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
