.navbar-futuristic {
  background: linear-gradient(90deg, #0e0f1a 0%, #111a2e 100%);
  box-shadow: 0 4px 24px rgba(58,192,255,.10), 0 0 0 2px rgba(123,97,255,.08);
  border-bottom: 2px solid rgba(123,97,255,.12);
  backdrop-filter: blur(8px);
  padding: 0.85rem 0;
}
.neon-brand {
  font-weight: 800;
  font-size: 1.7rem;
  color: #3ac0ff !important;
  text-shadow: 0 0 16px #3ac0ff, 0 2px 24px #7b61ff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.neon-brand i {
  color: #7b61ff;
  text-shadow: 0 0 12px #7b61ff;
}
.navbar-futuristic .navbar-nav .nav-link.neon-link {
  color: #eaf6ff !important;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
  position: relative;
  padding: 0.5rem 1.1rem;
}
.navbar-futuristic .navbar-nav .nav-link.neon-link.active,
.navbar-futuristic .navbar-nav .nav-link.neon-link:hover {
  color: #3ac0ff !important;
  background: linear-gradient(90deg, rgba(58,192,255,.12) 0%, rgba(123,97,255,.18) 100%);
  box-shadow: 0 0 12px #3ac0ff;
}
.navbar-futuristic .navbar-nav .nav-link.neon-link i {
  color: #7b61ff;
  text-shadow: 0 0 8px #7b61ff;
}
.navbar-futuristic .btn-neo {
  background: linear-gradient(120deg,#7b61ff, #3ac0ff);
  color: #fff;
  border: 1px solid rgba(122,97,255,.7);
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 0 24px 2px rgba(58,192,255,.18), var(--glow);
  text-shadow: 0 1px 8px rgba(58,192,255,.10);
  padding: .7em 1.2em;
  transition: background .2s;
}
.navbar-futuristic .btn-neo:hover {
  background: linear-gradient(120deg,#3ac0ff, #7b61ff);
  color: #fff;
}
.features-section h2 {
  color: #222;
  text-shadow: none;
  letter-spacing: -0.01em;
  font-weight: 800;
  opacity: 1;
}
.features-section p.text-muted {
  color: #222 !important;
  opacity: 1;
  text-shadow: none;
}
/* Enhanced Testimonial Section */
.testimonials-section {
  background: linear-gradient(120deg, rgba(58,192,255,.06) 0%, rgba(123,97,255,.10) 100%), var(--hero-bg2);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(58,192,255,.10);
  margin-bottom: 32px;
}
.testimonial-card {
  background: linear-gradient(120deg, rgba(58,192,255,.10) 0%, rgba(123,97,255,.12) 100%), var(--card-bg);
  border: 1.5px solid rgba(123,97,255,.18);
  box-shadow: 0 4px 24px rgba(58,192,255,.10);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  transition: box-shadow .3s, border-color .3s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--hero-accent);
  box-shadow: 0 8px 32px rgba(58,192,255,.18);
}
.testimonial-card .card-body {
  position: relative;
  z-index: 2;
  text-align: left;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #eaf6ff;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 8px rgba(58,192,255,.10);
}
.testimonial-card .d-flex {
  align-items: center;
  gap: 1rem;
}
.testimonial-card .rounded-circle {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--hero-accent-2);
  box-shadow: 0 0 16px 2px rgba(123,97,255,.25), 0 0 0 6px rgba(58,192,255,.10);
  background: #181e2f;
}
.testimonial-card strong {
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
}
.testimonial-card .text-muted {
  color: #a8c7ff !important;
  font-size: .98rem;
}
/* Futuristic hero styles for hosting homepage */
:root{
  --hero-bg1:#0e0f1a;
  --hero-bg2:#111a2e;
  --hero-accent:#3ac0ff;
  --hero-accent-2:#7b61ff;
  --hero-grid:#1b2640;
  --glow: 0 0 30px rgba(58,192,255,.35), 0 0 60px rgba(123,97,255,.25);
}

/* Full-bleed wrapper for home only */
body.home .content-wrapper{ padding-top:0; }


.hero{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#f8fbff;
  background:
    linear-gradient(160deg, var(--hero-bg1) 0%, var(--hero-bg2) 100%),
    radial-gradient(1200px 600px at 80% -10%, rgba(122,97,255,.32), transparent 60%),
    radial-gradient(1000px 500px at -10% 10%, rgba(58,192,255,.28), transparent 60%);
}

/* Subtle animated grid */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(to right, transparent 95%, rgba(255,255,255,.06) 96%),
                    linear-gradient(to bottom, transparent 95%, rgba(255,255,255,.06) 96%);
  background-size: 36px 36px;
  opacity:.35;
  transform: perspective(800px) rotateX(55deg) translateY(-15%);
  transform-origin: top;
  filter: drop-shadow(0 0 2px rgba(58,192,255,.12));
}

/* Decorative orbs */
.hero .orb{
  position:absolute; border-radius:50%; filter: blur(14px);
  opacity:.45; pointer-events:none; mix-blend-mode: screen;
  animation: float 14s ease-in-out infinite;
}
.hero .orb.o1{ width:320px; height:320px; background: radial-gradient(circle at 30% 30%, #71d7ff, transparent 60%); top:-60px; left:-80px; animation-delay:0s; }
.hero .orb.o2{ width:260px; height:260px; background: radial-gradient(circle at 60% 40%, #7b61ff, transparent 55%); bottom:-80px; right:-60px; animation-delay:2.5s; }
.hero .orb.o3{ width:200px; height:200px; background: radial-gradient(circle at 50% 50%, #22ffc3, transparent 55%); top:40%; right:10%; animation-delay:1.2s; }

@keyframes float{ 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-18px) } }

/* Particles canvas */
#hero-canvas{ position:absolute; inset:0; width:100%; height:100%; display:block; opacity:.6; }

.hero-inner{ position:relative; z-index:2; width:100%; }
.hero-content{ max-width:860px; margin-inline:auto; text-align:center; padding: 80px 16px; }
.hero-eyebrow{ letter-spacing:.32em; text-transform:uppercase; font-weight:600; color:#a8c7ff; opacity:.85; }
.hero-title{
  font-size: clamp(2.2rem, 4vw + 1rem, 3.2rem);
  line-height:1.08;
  font-weight:800;
  margin:.4rem 0 1rem;
  color:#fff;
  text-shadow: 0 2px 24px rgba(58,192,255,.18), 0 1px 0 #222;
  letter-spacing:-0.01em;
}
.hero-sub{
  font-size: clamp(1.08rem, 1.1vw + .8rem, 1.22rem);
  color:#eaf6ff;
  opacity:.98;
  max-width:760px;
  margin:0 auto 1.5rem;
  text-shadow:0 1px 8px rgba(58,192,255,.10);
}

.hero-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:1rem; }
.btn-neo{
  position:relative;
  border:1px solid rgba(122,97,255,.7);
  color:#fff;
  background:linear-gradient(120deg,#7b61ff, #3ac0ff);
  font-weight:700;
  padding:.85rem 1.25rem;
  border-radius:12px;
  box-shadow: 0 0 24px 2px rgba(58,192,255,.18), var(--glow);
  text-shadow:0 1px 8px rgba(58,192,255,.10);
}
.btn-ghost{
  color:#eaf6ff;
  border:1px solid rgba(174, 197, 255, .45);
  background: rgba(12,18,34,.45);
  padding:.85rem 1.15rem;
  border-radius:12px;
  backdrop-filter: blur(8px);
  transition: all .2s ease;
  text-shadow:0 1px 8px rgba(58,192,255,.10);
}
.btn-ghost:hover{ border-color:#7b61ff; color:#eaf6ff; box-shadow:0 0 0 2px rgba(123,97,255,.15) inset; }

/* Feature ticks */
.hero-badges{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-top:22px; }
.hero-badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:.5rem .8rem;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(13,19,35,.65) 60%, rgba(58,192,255,.08) 100%);
  border:1px solid rgba(174,197,255,.28);
  color:#f8fbff;
  font-weight:600;
  box-shadow:0 2px 12px rgba(58,192,255,.08);
}
.hero-badge i{ color:#7b61ff; text-shadow:0 0 16px rgba(123,97,255,.5); }

/* Reveal utility */
.reveal{ opacity:0; transform: translateY(16px) scale(.98); transition: .8s cubic-bezier(.2,.65,.2,1); }
.reveal.show{ opacity:1; transform: translateY(0) scale(1); }


/* Futuristic Pricing Section */
#pricing{
  position:relative;
  background:
    linear-gradient(120deg, rgba(58,192,255,.08) 0%, rgba(123,97,255,.10) 100%),
    linear-gradient(160deg, var(--hero-bg1) 0%, var(--hero-bg2) 100%);
  border-radius:32px;
  box-shadow:0 8px 32px rgba(58,192,255,.10);
  padding-bottom:48px;
  margin-bottom:32px;
}
#pricing .card.pricing-card-compact{
  background: linear-gradient(120deg, rgba(58,192,255,.10) 0%, rgba(123,97,255,.12) 100%), var(--card-bg);
  border:1.5px solid rgba(123,97,255,.18);
  box-shadow:0 4px 24px rgba(58,192,255,.10);
  transition:box-shadow .3s, border-color .3s;
}
#pricing .card.pricing-card-compact:hover{
  border-color:var(--hero-accent);
  box-shadow:0 8px 32px rgba(58,192,255,.18);
}
#pricing .card.featured{
  border:2.5px solid var(--hero-accent-2);
  box-shadow:0 20px 48px rgba(123,97,255,.32), 0 0 0 4px rgba(123,97,255,.10);
  transform: translateY(-4px) scale(1.04);
}
#pricing .popular-badge{
  position:absolute;
  top:18px; right:18px;
  background:linear-gradient(90deg,#7b61ff,#3ac0ff);
  color:#fff;
  font-weight:700;
  font-size:.95rem;
  padding:.32em 1em;
  border-radius:999px;
  box-shadow:0 2px 12px rgba(123,97,255,.18);
  letter-spacing:.08em;
  z-index:2;
}
#pricing .card-title{
  color:#fff;
  font-weight:700;
  font-size:1.3rem;
  letter-spacing:-0.01em;
}
#pricing .plan-type{
  color:#7b61ff;
  font-weight:600;
  font-size:.98rem;
  margin-top:2px;
}
#pricing .card-price{
  font-size:2.2rem;
  font-weight:700;
  color:#3ac0ff;
  background:linear-gradient(90deg,#3ac0ff,#7b61ff);
  -webkit-background-clip:text;
  background-clip: text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 2px 16px rgba(58,192,255,.18);
}
#pricing .feature-list{
  margin-top:12px;
}
#pricing .feature-list .list-group-item{
  background:rgba(13,19,35,.18);
  color:#eaf6ff;
  border:none;
  font-weight:500;
  font-size:.98rem;
  display:flex;
  align-items:center;
  gap:8px;
}
#pricing .feature-list .list-group-item i{
  color:#3ac0ff;
  text-shadow:0 0 8px rgba(58,192,255,.18);
}
#pricing .btn-primary{
  background:linear-gradient(90deg,#3ac0ff,#7b61ff);
  color:#fff;
  border:none;
  font-weight:700;
  box-shadow:0 2px 12px rgba(58,192,255,.10);
  border-radius:10px;
  padding:.7em 1.2em;
  transition:background .2s;
}
#pricing .btn-primary:hover{
  background:linear-gradient(90deg,#7b61ff,#3ac0ff);
  color:#fff;
}

/* Footer glow to match theme */
footer{
  box-shadow:0 -8px 32px rgba(58,192,255,.10);
  border-top:2px solid rgba(123,97,255,.12);
}

@media (max-width: 576px){
  .hero{ min-height: 48vh; }
  #pricing{ padding-bottom:24px; }
}

@media (max-width: 576px){
  .hero{ min-height: 72vh; }
}
