/* Base */
:root {
  --bg: #0b1215;
  --bg-alt: #121a1f;
  --panel: #182128;
  --accent: #6df0c2;
  --accent-2: #8ecbff;
  --text: #e8f0f3;
  --muted: #b5c2c9;
  --warning: #ffdf8c;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

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%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 36px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.panel {
  background: var(--panel);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 8px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #0b1215;
  font-weight: 600;
}

.btn.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.secondary {
  background: var(--accent-2);
  color: #0b1215;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(109, 240, 194, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 18, 21, 0.92);
  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.02em;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
}

.nav.is-open .nav-links {
  display: flex;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(109, 240, 194, 0.18), rgba(142, 203, 255, 0.12));
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Cards and lists */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.highlight {
  border: 1px solid rgba(109, 240, 194, 0.4);
}

.icon-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(142, 203, 255, 0.08);
  border-radius: var(--radius-sm);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-size: 1.05rem;
  color: var(--text);
  background: rgba(109, 240, 194, 0.08);
  padding: 18px;
  border-radius: var(--radius);
}

/* Service cards */
.service-card {
  border-left: 4px solid var(--accent);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--panel);
  border-radius: var(--radius-sm);
}

.comparison-row strong {
  color: var(--accent);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */
footer {
  padding: 36px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

/* Cookie banner and modal */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(720px, 92vw);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 7, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  width: min(680px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: var(--panel);
  border-radius: var(--radius-sm);
}

.toggle-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Utilities */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(109, 240, 194, 0.6), transparent);
  border: 0;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card,
  .card-grid .service-card {
    flex: 1 1 30%;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-col {
    flex-direction: row;
  }
}
