* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1c17;
  --bg-soft: #142720;
  --surface: #1a3228;
  --accent: #78e08f;
  --accent-strong: #44c767;
  --text: #f2f6f4;
  --muted: #b5c2bc;
  --shadow: rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 28, 23, 0.96);
  border-bottom: 1px solid rgba(120, 224, 143, 0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-toggle {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  margin: 0 0 16px 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0 56px;
}

section {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 20px 40px var(--shadow);
}

.section-alt {
  background: var(--bg-soft);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #04140d;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(120, 224, 143, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.stat-item span {
  color: var(--muted);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding-bottom: 10px;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.info-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(120, 224, 143, 0.12);
  color: var(--text);
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(120, 224, 143, 0.2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 24px 40px var(--shadow);
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 40;
  padding: 20px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .mobile-nav {
    display: none !important;
  }

  .split {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .icon-row {
    flex-direction: row;
  }

  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-item {
    flex: 1 1 320px;
  }
}
