:root {
  --bg: #050816;
  --bg-soft: #0a1226;
  --bg-card: rgba(10, 18, 38, 0.74);
  --bg-card-strong: rgba(12, 22, 44, 0.92);
  --line: rgba(139, 214, 255, 0.14);
  --text: #eef7ff;
  --muted: #a8bad0;
  --primary: #81d7ff;
  --primary-2: #4eb8ff;
  --accent: #8cf2ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(78,184,255,.18), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(140,242,255,.10), transparent 24%),
    linear-gradient(180deg, #050816 0%, #081124 45%, #050916 100%);
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -2;
}
.orb-1 {
  width: 280px; height: 280px;
  background: rgba(78,184,255,.35);
  left: -60px; top: 120px;
}
.orb-2 {
  width: 360px; height: 360px;
  background: rgba(129,215,255,.18);
  right: -80px; top: 320px;
}
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.55), transparent 88%);
  pointer-events: none;
  z-index: -1;
}

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 22, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 86px;
  gap: 22px;
}
.brand img { width: 175px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color .25s ease, transform .25s ease;
}
.nav a:hover { color: var(--text); transform: translateY(-1px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  color: #05101c;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 32px rgba(78,184,255,.24);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(78,184,255,.32);
  filter: brightness(1.03);
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: none;
}
.btn-sm { padding: 10px 16px; font-size: .95rem; }

.hero { padding: 76px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(129,215,255,.22);
  background: rgba(129,215,255,.08);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: .98;
  margin: 16px 0;
  letter-spacing: -.05em;
}
.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 680px;
}
.hero-actions { display: flex; gap: 14px; margin: 30px 0 20px; flex-wrap: wrap; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}
.hero-points li::before {
  content: '•';
  color: var(--primary);
  margin-right: 8px;
}
.hero-stack { display: grid; gap: 18px; }
.hero-card, .card, .case-card, .contact-panel, .contact-form, .map-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.glass-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(17, 28, 55, 0.88), rgba(9, 17, 34, 0.82));
}
.floating-card {
  animation: floatCard 5.2s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  font-size: .92rem;
}
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #7dffbb;
  box-shadow: 0 0 18px rgba(125,255,187,.7);
}
.glass-card h2 { font-size: 2rem; line-height: 1.1; margin: 18px 0 12px; }
.glass-card p { color: var(--muted); line-height: 1.75; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.mini-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.mini-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(129,215,255,.32);
  background: rgba(129,215,255,.06);
}
.mini-grid strong { display: block; font-size: .98rem; margin-bottom: 6px; }
.mini-grid span { color: var(--muted); font-size: .92rem; }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-pill {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease;
}
.stat-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(129,215,255,.3);
}
.stat-pill strong { display: block; margin-bottom: 6px; }
.stat-pill span { color: var(--muted); font-size: .92rem; }

.section { padding: 82px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.compact-heading { margin-bottom: 18px; }
.section-heading h2, .split-grid h2, .contact-grid h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  margin: 16px 0 10px;
}
.section-heading p, .split-grid p, .contact-grid p { color: var(--muted); line-height: 1.78; }
.cards { display: grid; gap: 22px; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .pricing-card { padding: 28px; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.card:hover, .pricing-card:hover, .case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(129,215,255,.3);
  box-shadow: 0 22px 55px rgba(0,0,0,.42);
}
.card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(129,215,255,.18), rgba(78,184,255,.08));
  border: 1px solid rgba(129,215,255,.18);
  margin-bottom: 18px;
}
.card h3, .case-card h3, .pricing-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card p, .case-card p, .pricing-card p { margin: 0; color: var(--muted); line-height: 1.72; }

.accent-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(78,184,255,0.05));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.split-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.check-list { display: grid; gap: 14px; }
.check-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.check-item:hover { transform: translateX(4px); border-color: rgba(129,215,255,.26); }
.check-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  margin-right: 12px;
}

.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-card { padding: 28px; }
.case-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(129,215,255,.08);
  color: var(--primary);
  border: 1px solid rgba(129,215,255,.18);
  font-size: .84rem;
  font-weight: 700;
}
.case-columns { display: grid; gap: 18px; }
.case-columns > div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.pricing-section { position: relative; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
  background: rgba(129,215,255,.08);
  color: var(--primary);
  border: 1px solid rgba(129,215,255,.18);
}
.price {
  margin: 18px 0 14px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.03em;
}
.price-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.featured {
  border-color: rgba(129,215,255,.3);
  background: linear-gradient(180deg, rgba(12,22,44,.96), rgba(10,18,38,.92));
  transform: scale(1.02);
}

.contact-panel { margin-top: 24px; padding: 24px; }
.contact-panel div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-panel div:last-child { border-bottom: 0; }
.contact-panel span { color: var(--muted); text-align: right; }
.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0,0,0,.22);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(129,215,255,.42);
  box-shadow: 0 0 0 4px rgba(129,215,255,.08);
  transform: translateY(-1px);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8ea6ba; }
.form-note {
  margin: 4px 2px 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.footer {
  padding: 34px 0 54px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo { width: 155px; }
.footer-brand p, .footer-links a { color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .three-up,
  .case-grid,
  .pricing-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-direction: column;
    padding: 16px 0;
  }
  .nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand img { width: 160px; }
  .hero { padding-top: 44px; }
  .mini-grid,
  .stats-bar { grid-template-columns: 1fr; }
  .footer-wrap,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-panel div {
    flex-direction: column;
  }
  .contact-panel span { text-align: left; }
}
