:root {
  --bg: #070b17;
  --bg-soft: #0f1630;
  --panel: rgba(14, 22, 44, 0.78);
  --panel-solid: #0e152b;
  --text: #eff3ff;
  --muted: #b6bfdc;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #6b7cff;
  --secondary: #c33dff;
  --accent: #19c3ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(25, 195, 255, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(195, 61, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #050914 0%, #0a1122 45%, #08111f 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 8, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover,
.text-link:hover { color: white; }

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-grid,
.two-col,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}

.hero-copy .lead,
.section-head p,
.service-detail p,
.contact-card p,
.info-box p { color: var(--muted); }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #9eb2ff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.7rem 1rem; font-size: 0.94rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 40px rgba(100, 80, 255, 0.28);
}
.btn-secondary,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-metrics div,
.logo-strip,
.card,
.cta-banner {
  border: 1px solid var(--line);
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 18px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.hero-metrics span,
.strip-wrap span,
.strip-wrap p,
.benefit-item p,
.timeline-item p,
.site-footer p,
.site-footer a,
.check-list li { color: var(--muted); }

.card {
  background: var(--panel-solid);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.glass {
  background: linear-gradient(180deg, rgba(18, 28, 58, 0.76), rgba(10, 16, 32, 0.84));
  backdrop-filter: blur(12px);
}

.hero-card h2,
.section-head h2,
.cta-banner h2,
.service-detail h2,
.contact-card h2 { margin-top: 0; }

.badge {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.06);
  color: #d5dbff;
  font-size: 0.86rem;
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9ed7ff;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(25, 195, 255, 0.18);
  left: -70px;
  bottom: 80px;
}
.hero-glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(195, 61, 255, 0.22);
  right: -90px;
  top: 40px;
}

.logo-strip {
  background: rgba(255,255,255,0.03);
}
.strip-wrap {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section,
.page-hero-wrap { padding: 5rem 0; }
.alt-section { background: rgba(255, 255, 255, 0.02); }

.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 2.5rem;
}
.section-head.left { text-align: left; margin-inline: 0; }
.section-head.narrow { max-width: 700px; }

.card-grid.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card h3,
.benefit-item h3,
.timeline-item h3,
.info-box h3,
.service-detail h2 {
  margin-top: 0;
}

.benefit-list,
.timeline {
  display: grid;
  gap: 1.2rem;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}
.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  align-items: start;
}
.footer-grid h4 { margin-top: 0; }
.footer-grid > div { display: grid; gap: 0.65rem; }
.footer-bottom {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.page-hero { padding-bottom: 0; }
.page-hero-wrap { padding-top: 1rem; }
.align-start { align-items: start; }
.service-detail ul { margin: 1rem 0 0; }
.service-detail li { margin-bottom: 0.7rem; color: var(--muted); }

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}
.contact-info { display: grid; gap: 1rem; }
.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
  padding: 0.95rem 1rem;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa5cf; }

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .timeline,
  .card-grid.four {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(7, 11, 23, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.open { display: flex; }

  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .timeline,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.4rem);
  }

  .section,
  .page-hero-wrap { padding: 4rem 0; }
}
