/* Base */
:root {
  --bg: #0b1220;
  --bg-soft: #121a2c;
  --panel: #18243a;
  --text: #e6edf6;
  --muted: #a7b3c7;
  --brand: #1b5cff;
  --brand-soft: #4f7dff;
  --accent: #00c2a8;
  --warning: #f5b942;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.highlight {
  background: var(--panel);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--brand-soft);
  color: var(--brand-soft);
}

.btn:hover {
  transform: translateY(-1px);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 92, 255, 0.16);
  color: var(--brand-soft);
  font-size: 0.82rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 68px;
  right: 4%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 0 48px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-panel {
  background: radial-gradient(circle at top, rgba(27, 92, 255, 0.2), transparent 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

/* Cards and grids */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card p {
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 194, 168, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--panel);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.4rem;
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  border-left: 2px solid var(--brand);
  padding-left: 16px;
}

/* Services */
.service-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  background: rgba(27, 92, 255, 0.08);
}

/* Testimonials */
.testimonial {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial .name {
  font-weight: 600;
  color: var(--text);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--text);
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 20, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  width: min(620px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.toggle-btn.active {
  background: var(--accent);
  color: #06241f;
  border-color: transparent;
  font-weight: 600;
}

/* Utility */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: var(--panel);
}

@media (min-width: 840px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: auto;
  }

  .hero-grid,
  .split,
  .footer-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid > * {
    flex: 1;
  }

  .card-grid,
  .comparison,
  .stat-bar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card,
  .card-grid .service-card,
  .comparison .card,
  .stat-bar .stat {
    flex: 1 1 calc(33% - 12px);
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 12px);
  }

  .split > * {
    flex: 1;
  }
}
