*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0e1218;
  --bg-alt: #151b24;
  --panel: #1b2330;
  --text: #f2f4f7;
  --muted: #c3c9d4;
  --brand: #7f5cff;
  --brand-dark: #5c3fd6;
  --accent: #47d3a7;
  --warning: #ffd166;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
  max-width: 1100px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 18, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand span {
  text-transform: lowercase;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 1.25rem;
  top: 4.25rem;
  min-width: 220px;
}

.nav-links a {
  padding: 0.35rem 0;
}

.nav-links.open {
  display: flex;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--panel);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

main section {
  padding: 3rem 0;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  margin: 0.5rem 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  margin: 0;
  font-size: 1.8rem;
}

.section-title img {
  width: 44px;
  height: 44px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.feature-item img {
  width: 42px;
  height: 42px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote {
  font-size: 1.4rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.4rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.testimonial p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.testimonial span {
  color: var(--accent);
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  border-left: 2px solid var(--brand);
  padding-left: 1rem;
}

.timeline-item span {
  color: var(--accent);
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
}

.faq-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  gap: 1rem;
}

.faq-toggle span {
  color: var(--accent);
}

.faq-content {
  margin-top: 0.75rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison .card {
  background: var(--bg-alt);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(127, 92, 255, 0.15), rgba(71, 211, 167, 0.12));
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.site-footer {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  background: var(--panel);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--panel);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  display: none;
  z-index: 30;
  box-shadow: var(--shadow);
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 18, 0.7);
  z-index: 40;
  padding: 1.5rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--bg-alt);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.8rem;
  max-width: 520px;
  width: 100%;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--panel);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
}

.toggle-row button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: transparent;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-price {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.address-block {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.highlight {
  background: rgba(127, 92, 255, 0.18);
  border-left: 4px solid var(--brand);
  padding: 1rem 1.2rem;
  border-radius: 12px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    align-items: center;
    min-width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid,
  .feature-list,
  .stats,
  .testimonials,
  .service-list,
  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature-item,
  .stat,
  .testimonial,
  .service-card,
  .address-block {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
