/* Base */
:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #1e1d1b;
  --muted: #5a5853;
  --accent: #1f6f63;
  --accent-soft: #d7eee9;
  --sand: #efe6d7;
  --terracotta: #c96a4a;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 16px 72px;
}

section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}

.section-alt {
  background: var(--sand);
}

.section-accent {
  background: var(--accent-soft);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 600;
}

.title {
  font-size: 1.8rem;
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #17584f;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: #fff;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.nav-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(30, 29, 27, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: flex-end;
}

.nav-panel {
  background: var(--surface);
  width: 78%;
  max-width: 320px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-panel a {
  font-weight: 600;
  color: var(--ink);
}

.nav-open .site-nav {
  transform: translateX(0);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #eaf5f2 100%);
  padding: 40px 20px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 18px;
}

/* Cards & Lists */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.05rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list span {
  color: var(--accent);
  font-weight: 700;
}

/* Statistics */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-bar strong {
  font-size: 1.4rem;
}

.stat-track {
  height: 8px;
  border-radius: 999px;
  background: #e2e0db;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: var(--accent);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--terracotta);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border: 1px solid #e3ded4;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #1f1e1c;
  color: #f5f3ee;
  padding: 32px 16px 50px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f5f3ee;
  font-size: 0.95rem;
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 29, 27, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.modal.is-visible {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-card label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.toggle-btn {
  border: 1px solid #d4cdc1;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Tables */
.info-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0dad0;
}

/* Utility */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fill-92 { width: 92%; }
.fill-78 { width: 78%; }
.fill-70 { width: 70%; }
.fill-64 { width: 64%; }
.fill-55 { width: 55%; }
.fill-48 { width: 48%; }

@media (min-width: 900px) {
  main {
    padding: 32px 24px 80px;
  }

  section {
    padding: 36px 32px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    background: transparent;
    inset: auto;
  }

  .nav-panel {
    flex-direction: row;
    align-items: center;
    width: auto;
    max-width: none;
    padding: 0;
    background: transparent;
  }

  .hero-grid,
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid > div,
  .two-col > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .stats {
    flex-direction: row;
  }

  .stat-bar {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
