:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --surface-alt: #f1ece4;
  --ink: #1c1c1c;
  --muted: #5d5d5d;
  --accent: #e07a5f;
  --accent-dark: #c15d44;
  --forest: #1f3d2f;
  --sand: #f2cc8f;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  z-index: 2000;
}

.skip-link:focus {
  left: 16px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid #e4dfd6;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  position: absolute;
  right: 4%;
  top: 64px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.nav-links a {
  padding: 6px 0;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--forest);
  font-weight: 600;
}

.nav-toggle {
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links.open {
  display: flex;
}

main {
  padding: 32px 0 64px;
}

section {
  padding: 40px 0;
}

.hero {
  background: linear-gradient(135deg, #ffffff, #f7f1e8);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .price {
  color: var(--accent-dark);
  font-weight: 700;
}

.icon-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-block {
  display: flex;
  gap: 12px;
  background: var(--surface-alt);
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 180px;
}

.icon-block svg {
  width: 40px;
  height: 40px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--forest);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote {
  background: var(--surface);
  border-left: 6px solid var(--accent);
  padding: 20px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  background: var(--surface-alt);
  padding: 16px;
  border-radius: 16px;
}

.badge {
  background: var(--forest);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border: 1px solid #e5dfd5;
}

.faq-item {
  border-bottom: 1px solid #ddd5c8;
  padding: 12px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.cta-panel {
  background: var(--forest);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel .btn.secondary {
  border-color: #fff;
  color: #fff;
}

.footer {
  background: #121f18;
  color: #f4efe8;
  padding: 36px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #f4efe8;
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px;
  width: min(560px, 92%);
  display: none;
  z-index: 2000;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2100;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-alt);
}

.toggle-btn {
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 6px 14px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn.active {
  background: var(--forest);
  color: #fff;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-block {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .hero-text {
    flex: 1;
    padding-right: 24px;
  }

  .hero .hero-aside {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 240px;
  }
}
