/* Base */
:root {
  --bg: #0f1115;
  --surface: #161a22;
  --panel: #1e2330;
  --accent: #6ee7ff;
  --accent-2: #a3ffb0;
  --text: #e6ebf2;
  --muted: #b0b7c3;
  --stroke: #2b3242;
  --warning: #ffd479;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section.panel {
  background: var(--panel);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0c10;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.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.04em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 64px;
  right: 20px;
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-open .nav-links {
  display: flex;
}

/* Hero */
.hero {
  padding: 72px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.15), rgba(163, 255, 176, 0.08));
  border: 1px solid rgba(110, 231, 255, 0.2);
  padding: 24px;
  border-radius: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Cards and layouts */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 20px;
  border-radius: 18px;
  flex: 1 1 240px;
}

.card.highlight {
  background: rgba(110, 231, 255, 0.08);
  border-color: rgba(110, 231, 255, 0.3);
}

.card .meta {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-item span {
  color: var(--accent);
  font-weight: 700;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Services */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  flex: 1 1 260px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.comparison .card {
  flex: 1 1 260px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid var(--stroke);
  padding: 32px 0;
  background: #0b0d12;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

/* Cookie banner */
.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 20px;
  right: 20px;
  z-index: 100;
}

.cookie-banner {
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 18px;
  border-radius: 16px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  top: 20px;
  bottom: 20px;
  margin: auto;
  background: rgba(15, 17, 21, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 22px;
  max-width: 520px;
  width: 100%;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 12px;
  border-radius: 12px;
}

/* Utilities */
.muted {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(110, 231, 255, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
}

.divider {
  height: 1px;
  background: var(--stroke);
  margin: 24px 0;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(110, 231, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    gap: 20px;
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    flex: 0 0 42%;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }
}
