* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1216;
  --bg-alt: #161b22;
  --bg-soft: #1d2430;
  --text: #f4f6f8;
  --muted: #c7cdd6;
  --accent: #62d2a2;
  --accent-2: #7ac7ff;
  --card: #121821;
  --border: #2a3240;
  --warning: #f4c97a;
}

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%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.soft {
  background: var(--bg-soft);
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 12px 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.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;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0b1413;
}

.btn-outline {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: transparent;
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 18, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-soft);
  padding: 16px;
  border-radius: 18px;
  position: absolute;
  right: 4vw;
  top: 66px;
  min-width: 220px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--bg-alt);
}

.nav.open {
  display: flex;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  display: none;
}

.nav-backdrop.active {
  display: block;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(98, 210, 162, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.stat span {
  color: var(--accent);
  font-weight: 700;
}

.feature-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-panel {
  background: linear-gradient(135deg, rgba(98, 210, 162, 0.16), rgba(122, 199, 255, 0.12));
  border: 1px solid rgba(98, 210, 162, 0.3);
  padding: 22px;
  border-radius: 22px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 20px;
}

.quote {
  font-size: 1.1rem;
  color: var(--text);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-price {
  color: var(--accent);
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 18px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  color: var(--text);
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 40;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal__content {
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 24px;
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
}

.cookie-toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.cookie-toggle button.active {
  background: var(--accent-2);
  color: #0c141a;
  border-color: transparent;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .nav {
    position: static;
    flex-direction: row;
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 6px;
  }

  .nav a {
    padding: 8px 12px;
  }

  .menu-toggle,
  .nav-backdrop {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .services-grid,
  .testimonials,
  .stats,
  .comparison,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .stat,
  .comparison-row,
  .info-grid .card {
    flex: 1 1 calc(50% - 16px);
  }

  .feature-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1 1 0;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .card,
  .testimonial,
  .stat,
  .comparison-row,
  .info-grid .card {
    flex: 1 1 calc(33.33% - 16px);
  }
}
