*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0b1115;
  --bg-alt: #101a22;
  --panel: #121f29;
  --text: #e6edf3;
  --muted: #b3c0cc;
  --accent: #79d5a6;
  --accent-strong: #51c08a;
  --warning: #f0c75e;
  --border: #243241;
  --card: #142330;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.panel {
  background: var(--panel);
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin: 0 0 12px;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 760px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(121, 213, 166, 0.12);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--accent);
  color: #0a0f12;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.btn.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.link {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 17, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand span {
  color: var(--accent);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  position: fixed;
  inset: 72px 16px auto 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  display: flex;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(121, 213, 166, 0.12);
}

.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 140px;
  background: rgba(121, 213, 166, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.metric strong {
  font-size: 1.2rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 42px;
  height: 42px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-panel {
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
}

.split-panel ul {
  padding-left: 18px;
  margin: 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: #0a0f12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 180px;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
}

.testimonial {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 22px;
  flex: 1 1 260px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--card);
}

.faq-item button {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.faq-panel {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.comparison-row strong {
  color: var(--accent);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-block {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: #0a0f13;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 2000;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2100;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--panel);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 24px;
  width: min(520px, 94%);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.cookie-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(121, 213, 166, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    background: transparent;
    border: none;
    padding: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    max-width: 420px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > div {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
