/* =========================================
   VERCODA UNBANS — Premium Cyber Dark Theme
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep:     #020408;
  --bg-dark:     #050c18;
  --bg-card:     rgba(8, 18, 40, 0.7);
  --bg-card2:    rgba(12, 24, 55, 0.6);
  --neon-blue:   #00cfff;
  --neon-purple: #a855f7;
  --neon-pink:   #ec4899;
  --neon-green:  #00ff88;
  --accent:      #0ea5e9;
  --accent2:     #6366f1;
  --text:        #e2e8f0;
  --text-muted:  #7f9ab5;
  --border:      rgba(0, 207, 255, 0.12);
  --border2:     rgba(99, 102, 241, 0.2);
  --glass:       rgba(0, 207, 255, 0.04);
  --glow-blue:   0 0 20px rgba(0, 207, 255, 0.4), 0 0 60px rgba(0, 207, 255, 0.15);
  --glow-purple: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 60px rgba(168, 85, 247, 0.15);
  --glow-green:  0 0 20px rgba(0, 255, 136, 0.4);
  --radius:      14px;
  --radius-sm:   8px;
  --font:        'Poppins', 'Inter', sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { max-width: 100%; }

/* =========================================
   CURSOR GLOW
   ========================================= */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,207,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s;
}

/* =========================================
   PARTICLES
   ========================================= */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* =========================================
   LOADER
   ========================================= */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-v {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 900;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  z-index: 1;
  animation: pulseV 2s ease-in-out infinite;
}
@keyframes pulseV {
  0%, 100% { text-shadow: 0 0 20px rgba(0,207,255,0.6), 0 0 60px rgba(0,207,255,0.3); }
  50% { text-shadow: 0 0 40px rgba(0,207,255,1), 0 0 100px rgba(0,207,255,0.5); }
}
.loader-rings {
  position: absolute;
  inset: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spinRing linear infinite;
}
.ring-1 {
  inset: 0;
  border-top-color: var(--neon-blue);
  animation-duration: 1.5s;
}
.ring-2 {
  inset: 8px;
  border-right-color: var(--neon-purple);
  animation-duration: 2s;
  animation-direction: reverse;
}
.ring-3 {
  inset: 18px;
  border-bottom-color: var(--neon-green);
  animation-duration: 2.5s;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.loader-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-blue));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
}
.loader-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.loader-bar-wrap {
  width: 260px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  box-shadow: 0 0 10px var(--neon-blue);
  transition: width 0.05s linear;
}
.loader-pct {
  font-size: 0.8rem;
  color: var(--neon-blue);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,207,255,0.05);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}
.logo-glow {
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  animation: logoGlowPulse 3s ease-in-out infinite;
}
.logo-accent { color: var(--neon-purple); }
@keyframes logoGlowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0,207,255,0.5); }
  50% { text-shadow: 0 0 30px rgba(0,207,255,0.9), 0 0 60px rgba(0,207,255,0.4); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--neon-blue);
  background: rgba(0,207,255,0.07);
}
.nav-cta {
  background: linear-gradient(135deg, rgba(0,207,255,0.15), rgba(99,102,241,0.15));
  border: 1px solid var(--border);
  color: var(--neon-blue) !important;
  font-weight: 600;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(0,207,255,0.25), rgba(99,102,241,0.25)) !important;
  border-color: var(--neon-blue) !important;
  box-shadow: var(--glow-blue);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   LIVE TICKER
   ========================================= */
.live-ticker {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,207,255,0.06);
  border: 1px solid rgba(0,207,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 0.78rem;
  white-space: nowrap;
  animation: fadeSlideDown 0.5s ease 2s both;
  box-shadow: 0 4px 20px rgba(0,207,255,0.1);
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: tickerPulse 1.5s ease-in-out infinite;
}
@keyframes tickerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.ticker-label {
  font-weight: 700;
  color: var(--neon-green);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.ticker-text {
  color: var(--text);
  font-weight: 500;
  transition: opacity 0.3s, transform 0.3s;
}
.ticker-text.fade-out {
  opacity: 0;
  transform: translateY(-4px);
}
.ticker-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,207,255,0.12) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero > * { position: relative; z-index: 1; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 160px; }
  .hero-visual { display: flex; justify-content: center; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,207,255,0.07);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 24px;
  animation: heroFadeIn 0.8s ease 2.2s both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: tickerPulse 1.5s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: heroFadeIn 0.8s ease 2.4s both;
}
.title-line { display: block; color: var(--text); }
.title-accent {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  animation: heroFadeIn 0.8s ease 2.5s both;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: heroFadeIn 0.8s ease 2.6s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: heroFadeIn 0.8s ease 2.7s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: heroFadeIn 0.8s ease 2.8s both;
}
.hstat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hstat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.hstat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: heroFadeIn 0.8s ease 2.6s both;
}
.phone-mockup {
  position: relative;
  width: 240px;
}
.phone-screen {
  background: linear-gradient(160deg, rgba(8,18,40,0.95), rgba(0,10,30,0.98));
  border: 2px solid rgba(0,207,255,0.25);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 0 40px rgba(0,207,255,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,207,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.phone-dots { display: flex; gap: 5px; }
.phone-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,207,255,0.3);
}
.phone-dots span:first-child { background: rgba(255,80,80,0.5); }
.phone-dots span:nth-child(2) { background: rgba(255,200,0,0.5); }
.phone-dots span:last-child { background: rgba(0,255,100,0.5); }
.phone-cam { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,207,255,0.2); border: 1px solid rgba(0,207,255,0.3); }
.phone-content { text-align: center; padding: 20px 0; }
.phone-check-anim {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,207,255,0.2), rgba(0,255,136,0.2));
  border: 2px solid rgba(0,255,136,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: checkPulse 2s ease-in-out infinite;
}
.phone-check { font-size: 1.5rem; }
@keyframes checkPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0,255,136,0.3); }
  50% { box-shadow: 0 0 30px rgba(0,255,136,0.6), 0 0 60px rgba(0,255,136,0.2); }
}
.phone-msg {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 6px;
}
.phone-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 14px; }
.phone-tags { display: flex; gap: 6px; justify-content: center; }
.phone-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(0,207,255,0.1);
  border: 1px solid rgba(0,207,255,0.2);
  color: var(--text-muted);
}
.phone-tag.active { background: rgba(0,255,136,0.15); border-color: rgba(0,255,136,0.3); color: var(--neon-green); }
.phone-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(0,207,255,0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: phoneGlowPulse 3s ease-in-out infinite;
  z-index: -1;
}
@keyframes phoneGlowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.phone-float-badge {
  position: absolute;
  background: rgba(8,18,40,0.9);
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-green);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.pb-1 {
  top: 20%;
  right: -60px;
  animation: floatBadge1 4s ease-in-out infinite;
}
.pb-2 {
  bottom: 25%;
  left: -60px;
  animation: floatBadge2 4s ease-in-out infinite 1s;
}
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #006bff, #0ea5e9, #a855f7);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 0 25px rgba(0,207,255,0.3), 0 8px 30px rgba(0,0,0,0.3);
  transition: all var(--transition);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,207,255,0.5), 0 12px 40px rgba(0,0,0,0.4);
}
.btn-glow:active { transform: translateY(0); }
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-inner { position: relative; z-index: 1; }
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 3s ease-in-out infinite 1s;
}
@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 150%; }
}
.btn-full { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0,207,255,0.05);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-icon { font-size: 1.1rem; }

/* =========================================
   SECTION COMMONS
   ========================================= */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-badge {
  display: inline-block;
  background: rgba(0,207,255,0.08);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-works {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,207,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.step-card:hover::before { opacity: 1; }
.step-card:hover {
  border-color: rgba(0,207,255,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--glow-blue);
}
.step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,207,255,0.06);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   FORM SECTION
   ========================================= */
.form-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0,207,255,0.02), transparent);
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.form-step {
  display: none;
  animation: stepIn 0.5s cubic-bezier(0.4,0,0.2,1);
}
.form-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-step-badge {
  display: inline-block;
  background: rgba(0,207,255,0.08);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.form-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.form-sub { font-size: 0.95rem; color: var(--text-muted); }
.form-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 500px) { .form-body { padding: 24px 20px; } }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.input-icon {
  position: absolute;
  left: 16px;
  font-size: 1rem;
  color: var(--neon-blue);
  z-index: 1;
  user-select: none;
}
.cyber-input {
  width: 100%;
  background: rgba(0,207,255,0.04);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 16px 14px 44px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: all var(--transition);
  caret-color: var(--neon-blue);
}
.cyber-input::placeholder { color: rgba(127,154,181,0.5); }
.cyber-input:focus {
  border-color: var(--neon-blue);
  background: rgba(0,207,255,0.07);
  box-shadow: 0 0 0 3px rgba(0,207,255,0.1), 0 0 20px rgba(0,207,255,0.1);
}
.input-hint { font-size: 0.76rem; color: var(--text-muted); }

/* Fee Card */
.fee-card {
  background: linear-gradient(135deg, rgba(0,207,255,0.08), rgba(168,85,247,0.08));
  border: 1px solid rgba(0,207,255,0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.fee-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.fee-amount {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  animation: feeGlow 2s ease-in-out infinite;
}
@keyframes feeGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}
.fee-meta { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.fee-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(0,207,255,0.08);
  border: 1px solid rgba(0,207,255,0.15);
  color: var(--text-muted);
  font-weight: 600;
}

/* QR Code */
.qr-section {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.qr-wrap {
  position: relative;
  flex-shrink: 0;
}
.qr-container {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-container canvas, .qr-container img {
  width: 100% !important;
  height: 100% !important;
}
.qr-glow {
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(0,207,255,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: qrGlowPulse 2.5s ease-in-out infinite;
}
@keyframes qrGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.qr-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--neon-blue);
  border-style: solid;
}
.qr-tl { top: -3px; left: -3px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.qr-tr { top: -3px; right: -3px; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.qr-bl { bottom: -3px; left: -3px; border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.qr-br { bottom: -3px; right: -3px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }
.qr-info { flex: 1; min-width: 160px; }
.qr-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.qr-upi {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-blue);
  margin-bottom: 10px;
  font-family: 'Inter', monospace;
  letter-spacing: 0.02em;
}
.qr-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,207,255,0.08);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon-blue);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  margin-bottom: 14px;
}
.qr-copy:hover { background: rgba(0,207,255,0.15); }
.qr-copy.copied { color: var(--neon-green); border-color: rgba(0,255,136,0.3); }
.qr-apps { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.qr-apps span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}
.qr-scan-text { font-size: 0.8rem; color: var(--text-muted); }

/* Upload */
.upload-section { display: flex; flex-direction: column; gap: 16px; }
.upload-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.dropzone {
  border: 2px dashed var(--border2);
  border-radius: var(--radius);
  background: rgba(0,207,255,0.02);
  min-height: 140px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--neon-blue);
  background: rgba(0,207,255,0.05);
  box-shadow: 0 0 20px rgba(0,207,255,0.1);
}
.dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.dz-icon { font-size: 2rem; }
.dz-text { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.dz-sub { font-size: 0.8rem; color: var(--text-muted); }
.dz-browse { color: var(--neon-blue); text-decoration: underline; cursor: pointer; }
.dz-types { font-size: 0.72rem; color: rgba(127,154,181,0.5); }
.upload-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  text-align: center;
  animation: uploadPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.upload-success.visible { display: flex; }
.us-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,255,136,0.15);
  border: 2px solid rgba(0,255,136,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0,255,136,0.3);
}
.us-text { font-size: 0.9rem; font-weight: 700; color: var(--neon-green); }
.us-sub { font-size: 0.75rem; color: var(--text-muted); }
@keyframes uploadPop {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
#submitBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  animation: none;
  box-shadow: none;
}
#submitBtn:disabled .btn-shine { display: none; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.testimonials-outer { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 480px) {
  .testi-card {
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    padding: 20px;
  }
}
.testi-card:hover {
  border-color: rgba(168,85,247,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), var(--glow-purple);
}
.testi-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-handle { font-size: 0.75rem; color: var(--text-muted); }
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.testi-btn:hover {
  background: rgba(0,207,255,0.1);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
  cursor: pointer;
  transition: all var(--transition);
}
.testi-dot.active { background: var(--neon-blue); box-shadow: 0 0 8px var(--neon-blue); width: 20px; border-radius: 4px; }

/* =========================================
   STATS
   ========================================= */
.stats-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(168,85,247,0.02), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-card:hover {
  border-color: rgba(0,207,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.stat-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-bottom: 16px; }
.stat-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}
.stat-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1) 0.3s;
  box-shadow: 0 0 8px var(--neon-blue);
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.faq-item.open { border-color: rgba(0,207,255,0.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
}
.faq-q:hover { color: var(--neon-blue); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,207,255,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neon-blue);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,207,255,0.15); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* =========================================
   VISITOR COUNTER
   ========================================= */
.visitor-counter {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,12,24,0.9);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeSlideUp 0.5s ease 3s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: tickerPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
#visitorCount { color: var(--neon-green); font-weight: 800; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(2,4,8,0.8);
  backdrop-filter: blur(20px);
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 600px) { .footer-container { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.footer-links-wrap { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; color: var(--neon-blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--neon-blue); }
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: rgba(127,154,181,0.5);
}

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.visible { display: flex; }
.modal {
  background: rgba(5,12,28,0.97);
  border: 1px solid rgba(0,207,255,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 60px rgba(0,207,255,0.15), 0 30px 80px rgba(0,0,0,0.5);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,207,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.modal-anim-ring {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,207,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.modal-icon { font-size: 3rem; margin-bottom: 16px; display: block; animation: modalIconSpin 2s ease-in-out infinite; }
@keyframes modalIconSpin {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}
.modal-title { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.modal-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.modal-divider { height: 1px; background: var(--border); margin: 20px 0; }
.modal-contact { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.modal-phone { font-size: 1.4rem; font-weight: 800; color: var(--neon-blue); margin-bottom: 4px; letter-spacing: 0.05em; }
.modal-avail { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 24px; }
.modal-wa { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.modal-close-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.modal-close-btn:hover { border-color: var(--neon-blue); color: var(--neon-blue); }

/* =========================================
   NAVBAR — TRACK BUTTON
   ========================================= */
.nav-track {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-purple) !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25) !important;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font);
}
.nav-track:hover {
  background: rgba(168,85,247,0.2) !important;
  border-color: var(--neon-purple) !important;
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
  transform: translateY(-1px);
}

/* =========================================
   TRACK MODAL
   ========================================= */
.track-modal {
  max-width: 500px;
  padding: 44px 40px;
}
@media (max-width: 500px) { .track-modal { padding: 32px 22px; } }

.track-modal-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

/* Scanner animation */
.track-scanner {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scanner-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: scanSpin linear infinite;
}
.s-r1 { inset: 0;  border-top-color: var(--neon-blue);   animation-duration: 1.2s; }
.s-r2 { inset: 10px; border-right-color: var(--neon-purple); animation-duration: 1.8s; animation-direction: reverse; }
.s-r3 { inset: 20px; border-bottom-color: var(--neon-green); animation-duration: 2.4s; }
@keyframes scanSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.scanner-icon {
  font-size: 1.6rem;
  animation: scanIconPulse 1.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes scanIconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.75; }
}

/* Step list */
.track-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}
.track-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.35;
  transition: opacity 0.4s, color 0.4s;
}
.track-step.active {
  opacity: 1;
  color: var(--neon-blue);
}
.track-step.done {
  opacity: 1;
  color: var(--neon-green);
}
.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex-shrink: 0;
  transition: background 0.3s;
  position: relative;
}
.track-step.active .ts-dot {
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
  animation: tsDotPulse 0.8s ease-in-out infinite;
}
.track-step.done .ts-dot {
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: none;
}
.track-step.done .ts-dot::after {
  content: '✓';
  position: absolute;
  inset: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #000;
  font-weight: 900;
}
@keyframes tsDotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.4); }
}

/* Result badges */
.result-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto;
  position: relative;
}
.result-success {
  background: rgba(0,255,136,0.12);
  border: 2px solid rgba(0,255,136,0.4);
  color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0,255,136,0.25);
  animation: resultPop 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.result-error {
  background: rgba(248,113,113,0.12);
  border: 2px solid rgba(248,113,113,0.4);
  color: #f87171;
  box-shadow: 0 0 30px rgba(248,113,113,0.2);
  animation: resultPop 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes resultPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.result-ring-anim {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,136,0.3);
  animation: resultRingExpand 2s ease-out infinite;
}
.red-ring { border-color: rgba(248,113,113,0.3); }
@keyframes resultRingExpand {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Result info box */
.result-info-box {
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.success-box {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.2);
}
.error-box {
  background: rgba(248,113,113,0.05);
  border: 1px solid rgba(248,113,113,0.2);
}
.rib-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.rib-label { color: var(--text-muted); font-weight: 500; }
.rib-val   { font-weight: 700; color: var(--text); font-size: 0.82rem; }
.rib-val.green { color: var(--neon-green); }
.rib-val.red   { color: #f87171; }

.result-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* =========================================
   ANIMATIONS — SHIMMER
   ========================================= */
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(2,4,8,0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .live-ticker { font-size: 0.7rem; padding: 5px 12px; max-width: calc(100vw - 40px); overflow: hidden; }
  .hero { padding-top: 160px; }
  .hstat { display: none; }
  .hstat:first-child { display: block; }
  .hstat-divider { display: none; }
  .hero-btns { flex-direction: column; }
  .btn-ghost { text-align: center; justify-content: center; }
  .phone-float-badge { display: none; }
  .qr-section { flex-direction: column; align-items: center; }
  .qr-info { text-align: center; }
  .qr-apps { justify-content: center; }
  .modal { padding: 36px 24px; }
  .footer-links-wrap { gap: 24px; }
  .visitor-counter { bottom: 20px; right: 12px; }
}

@media (max-width: 480px) {
  .testi-card { min-width: calc(100vw - 60px); }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 2.8rem; }
}
