* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1115;
  --surface: #161a22;
  --surface-2: #1e2430;
  --text: #f4f6f9;
  --muted: #c7ced9;
  --brand: #e9354b;
  --brand-2: #ff7a59;
  --accent: #3aa5ff;
  --ok: #2ac48a;
  --warning: #f2b63f;
  --shadow: 0 14px 30px rgba(15, 17, 21, 0.35);
  --radius: 16px;
}

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;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

header {
  background: rgba(15, 17, 21, 0.9);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--surface-2);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 0.95rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu-content {
  background: var(--surface);
  margin: 80px 16px 16px;
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-group {
  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: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  color: var(--brand-2);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface-2);
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 1.1rem;
  color: var(--ok);
  font-weight: 700;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--surface-2);
  padding: 18px;
  border-radius: 12px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.testimonial {
  background: var(--surface-2);
  padding: 22px;
  border-radius: 14px;
  border-left: 4px solid var(--brand);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-2);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 16px 18px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding-bottom: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--surface-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.banner {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  padding: 26px;
  border-radius: var(--radius);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  padding: 40px 0;
  background: #0c0e12;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface-2);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 15, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--surface-2);
  border-radius: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: var(--surface-2);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  background: var(--surface-2);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-visual {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid > * {
    flex: 1;
  }
}
