*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-alt: #f0f4f6;
  --text: #1f2a35;
  --muted: #5f6b76;
  --accent: #2f5f6f;
  --accent-dark: #1f4654;
  --highlight: #e8d8b5;
  --border: #d7dde3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.hero {
  padding: 72px 0 80px;
  background: linear-gradient(120deg, #ffffff 0%, #f0f4f6 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0;
}

.hero p {
  max-width: 620px;
  font-size: 1.05rem;
  color: var(--muted);
}

.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;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: var(--highlight);
}

.card h3 {
  margin: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  padding: 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.stat-item span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.feature img {
  width: 44px;
  height: 44px;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillars .pillar {
  padding: 18px;
  border-radius: 14px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.process-step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  padding: 16px;
  text-align: left;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent-dark);
  color: #fff;
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: min(960px, 94%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 32, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.85rem;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-block {
  padding: 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.note {
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid {
    flex-direction: row;
  }

  .card-grid .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1 1 calc(50% - 12px);
  }

  .pillars {
    flex-direction: row;
  }

  .pillars .pillar {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > * {
    flex: 1;
  }
}
