:root {
  --body: #0b0f14;
  --surface: #10161d;
  --surface-dim: #0f141a;
  --ink: #e9f0ff;
  --muted: #93a0b3;

  --cyan: #34d0ff;
  --magenta: #ff3d81;
  --lime: #a1ff0a;

  --focus: #fff;
}

html,
body {
  background: var(--body);
  color: var(--ink);
}
.bg-body {
  background: var(--body) !important;
}
.bg-surface {
  background: var(--surface) !important;
}
.bg-surface-dim {
  background: var(--surface-dim) !important;
}
.text-body {
  color: var(--ink) !important;
}
.text-white {
  color: #fff !important;
}
.text-muted {
  color: var(--muted) !important;
}

a {
  color: var(--cyan);
}
a:hover {
  color: #14a8d3;
}

.btn-neon {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #101010;
  border: 0;
  font-weight: 700;
}
.btn-neon:hover {
  filter: brightness(1.05);
  color: #101010;
}
.btn-outline-neon {
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-weight: 700;
}
.btn-outline-neon:hover {
  background: var(--cyan);
  color: #101010;
}

.link-neon {
  color: var(--cyan);
  text-decoration: none;
}
.link-neon:hover {
  text-decoration: underline;
}

.nav-link {
  color: var(--ink);
  opacity: 0.85;
}
.nav-link:hover {
  opacity: 1;
}
.nav-link.active {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--magenta);
}

.hero-neon {
  background: radial-gradient(
      60% 90% at 10% 10%,
      rgba(161, 255, 10, 0.1) 0%,
      rgba(161, 255, 10, 0) 60%
    ),
    radial-gradient(
      60% 90% at 90% 12%,
      rgba(52, 208, 255, 0.18) 0%,
      rgba(52, 208, 255, 0) 60%
    ),
    radial-gradient(
      60% 90% at 20% 90%,
      rgba(255, 61, 129, 0.14) 0%,
      rgba(255, 61, 129, 0) 60%
    ),
    var(--surface);
}
.mesh-accent {
  position: absolute;
  right: -100px;
  bottom: -80px;
  width: 560px;
  opacity: 0.18;
  pointer-events: none;
}
.border-hero {
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}
.shadow-xxl {
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 1rem;
}

.edge {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.edge-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.bg-cyan {
  background: var(--cyan) !important;
}
.bg-magenta {
  background: var(--magenta) !important;
}
.bg-lime {
  background: var(--lime) !important;
  color: #0a0a0a;
}

.step {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #061016;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.mesh-soft {
  background: radial-gradient(
      60% 90% at 0% 10%,
      rgba(52, 208, 255, 0.12),
      rgba(52, 208, 255, 0) 60%
    ),
    radial-gradient(
      60% 90% at 100% 80%,
      rgba(255, 61, 129, 0.1),
      rgba(255, 61, 129, 0) 60%
    ),
    var(--surface-dim);
}
.price-card.highlighted {
  outline: 3px solid var(--cyan);
}
.card-ribbon {
  position: absolute;
  top: 12px;
  left: -6px;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 800;
  color: #101010;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.neon-quote {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(52, 208, 255, 0.06),
    rgba(255, 61, 129, 0.06)
  );
}

details.faq {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
summary {
  cursor: pointer;
}

.form-control-dark {
  color: #e8f1ff;
  background: #0d141b;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.form-control-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(52, 208, 255, 0.25);
  border-color: var(--cyan);
}
.badge.bg-lime {
  background: var(--lime) !important;
  color: #0b0f14;
}
.navbar-toggler{
  background-color: #fff;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .breadcrumb-item.active{
  color: #fff;
}
footer .link-neon i {
  vertical-align: middle;
}
