/* ==========================================================================
   Anshik Sinha Insurance — SUPERHERO Dark Theme
   Iron Man · Captain America · Batman
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Backgrounds — Batman void black */
  --dark:      #050508;
  --dark2:     #09090F;
  --dark3:     #0E0E16;
  --dark4:     #15151E;

  /* Iron Man chest red */
  --red:       #C8102E;
  --red-glow:  rgba(200,16,46,0.4);

  /* Captain America shield blue (--cyan slot) */
  --cyan:      #1B6FD8;
  --cyan-glow: rgba(27,111,216,0.35);

  /* Iron Man gold */
  --gold:      #E8A800;
  --gold-glow: rgba(232,168,0,0.4);

  /* Batman signal yellow (--purple slot) */
  --purple:    #F5C518;
  --purple-glow: rgba(245,197,24,0.3);

  /* Iron Man armor silver */
  --green:     #A8A9B4;

  --text:      #E8E8F2;
  --text-muted:#8892A8;
  --border:    rgba(232,168,0,0.12);
  --border-glow: rgba(200,16,46,0.3);
  --glass:     rgba(255,255,255,0.03);
  --glass2:    rgba(255,255,255,0.06);
  --radius:    10px;
  --radius-lg: 20px;
  --font-hero: 'Barlow Condensed', sans-serif;
  --font:      'Inter', system-ui, sans-serif;
  --max-w:     1160px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--red)); border-radius: 3px; }

/* --- Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* --- Keyframe Animations --- */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px var(--cyan-glow); }
  50%       { box-shadow: 0 0 40px var(--cyan-glow), 0 0 80px var(--cyan-glow); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glitch {
  0%   { clip-path: inset(40% 0 61% 0); transform: skew(-2deg); }
  20%  { clip-path: inset(92% 0 1% 0); transform: skew(1deg); }
  40%  { clip-path: inset(43% 0 1% 0); transform: skew(0.5deg); }
  60%  { clip-path: inset(25% 0 58% 0); transform: skew(-1deg); }
  80%  { clip-path: inset(54% 0 7% 0); transform: skew(1.5deg); }
  100% { clip-path: inset(58% 0 43% 0); transform: skew(-2deg); }
}
@keyframes borderRotate {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 40px var(--red); }
  50%       { text-shadow: 0 0 5px var(--gold), 0 0 10px var(--red), 0 0 20px var(--cyan); }
}
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
@keyframes cardTilt {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(3deg) rotateX(2deg); }
}

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
/* Fallback: if JS observer fails, ensure content is visible */
@media (max-width: 768px) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* --- Gradient Text --- */
/* Iron Man gold → Cap America red → Cap blue (hero tri-color) */
.grad-text {
  background: linear-gradient(135deg, #E8A800 0%, #C8102E 50%, #1B6FD8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}
.grad-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #C8102E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
/* Iron Man gold → red: vivid, unmissable against dark backgrounds */
.btn-primary {
  background: linear-gradient(135deg, #E8A800 0%, #C8102E 100%);
  color: #000;
  border-color: transparent;
  font-weight: 800;
  text-shadow: none;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(232,168,0,0.5), 0 8px 32px rgba(200,16,46,0.4);
  color: #000;
  filter: brightness(1.1);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #FF8C00 100%);
  color: var(--dark);
  font-weight: 800;
}
.btn-gold:hover { box-shadow: 0 0 30px var(--gold-glow), 0 8px 32px rgba(255,184,0,0.3); color: var(--dark); }
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-outline:hover { background: var(--cyan); color: var(--dark); box-shadow: 0 0 20px var(--cyan-glow); }
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, #C81D2A 100%);
  color: var(--text);
  border-color: transparent;
}
.btn-red:hover { box-shadow: 0 0 30px var(--red-glow); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 800;
}
.btn-whatsapp:hover { box-shadow: 0 0 30px rgba(37,211,102,0.4); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(6,7,15,0.97);
  box-shadow: 0 4px 40px rgba(0,212,255,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-logo .accent { color: var(--cyan); }
.nav-logo .dot { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--dark);
}
/* Iron Man ARC reactor glow left, Cap America blue right, Batman black base */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 25% 40%, rgba(200,16,46,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 75% 55%, rgba(27,111,216,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 90%, rgba(232,168,0,0.08) 0%, transparent 50%);
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}
/* Iron Man HUD grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Particles — Iron Man sparks + Cap energy */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFloat linear infinite;
  opacity: 0;
}
.particle:nth-child(1)  { left: 10%; animation-duration: 8s;  animation-delay: 0s;   background: var(--gold); }
.particle:nth-child(2)  { left: 25%; animation-duration: 10s; animation-delay: 2s;   background: var(--cyan); }
.particle:nth-child(3)  { left: 40%; animation-duration: 7s;  animation-delay: 4s;   background: var(--red); }
.particle:nth-child(4)  { left: 60%; animation-duration: 12s; animation-delay: 1s;   background: var(--gold); }
.particle:nth-child(5)  { left: 75%; animation-duration: 9s;  animation-delay: 3s;   background: var(--purple); }
.particle:nth-child(6)  { left: 90%; animation-duration: 11s; animation-delay: 5s;   background: var(--cyan); }
.particle:nth-child(7)  { left: 15%; animation-duration: 6s;  animation-delay: 7s;   background: var(--red); }
.particle:nth-child(8)  { left: 50%; animation-duration: 13s; animation-delay: 0.5s; background: var(--gold); }

.hero-inner { position: relative; z-index: 2; }
/* Iron Man HUD badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,0,0.1);
  border: 1px solid rgba(232,168,0,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  animation: slideInLeft 0.8s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseGlow 2s infinite;
}
.hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: slideInUp 0.8s ease 0.2s both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: slideInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.6s both;
}
.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.85rem;
}

/* --- Section --- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  position: relative;
}
.section-label::before {
  content: '//';
  margin-right: 6px;
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-hero);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.bg-dark2 { background: var(--dark2); }
.bg-dark3 { background: var(--dark3); }

/* --- Divider --- */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  margin: 0;
  opacity: 0.5;
}

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 0 40px rgba(0,212,255,0.1), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15) 0%, rgba(139,92,246,0.1) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 1.4rem;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  font-family: var(--font-hero);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card .card-link:hover { color: var(--gold); }

/* --- Stats --- */
.stats-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Why Broker Section --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num {
  font-family: var(--font-hero);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0,212,255,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.why-item:hover .why-num { color: var(--cyan); transition: color 0.3s; }
.why-text h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.why-text p  { font-size: 0.88rem; color: var(--text-muted); }

/* --- Glow Card (visual panel) --- */
.glow-panel {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark4) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.glow-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(0,212,255,0.06) 80%, transparent 90%);
  animation: borderRotate 8s linear infinite;
}
.glow-panel-inner { position: relative; z-index: 1; }
.glow-panel h3 {
  font-family: var(--font-hero);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.glow-panel p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.panel-stat {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.panel-stat-num {
  font-family: var(--font-hero);
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.panel-stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* --- Steps --- */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--dark);
  font-size: 1rem;
  font-weight: 900;
  font-family: var(--font-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-content p  { font-size: 0.9rem; color: var(--text-muted); }

/* --- Checklist --- */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.checklist li::before { content: '⚡'; flex-shrink: 0; margin-top: 1px; }

/* --- Insurance Logos Marquee --- */
.logos-section {
  background: var(--dark2);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.logos-label::before { content: '—— '; }
.logos-label::after  { content: ' ——'; }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  margin: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--glass);
  white-space: nowrap;
  transition: var(--transition);
  min-width: 140px;
}
.logo-badge:hover {
  border-color: rgba(0,212,255,0.3);
  background: var(--glass2);
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}
.logo-badge span { font-weight: 700; font-size: 0.88rem; color: var(--text-muted); }
.logo-badge .logo-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* --- FAQ --- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--glass2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: rgba(0,212,255,0.15); border-color: var(--cyan); color: var(--cyan); }
.faq-answer { display: none; padding-bottom: 20px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }
.faq-chevron { transition: transform 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--cyan); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0,212,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,92,246,0.06) 0%, transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-banner p  { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-hero);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-info p  { color: var(--text-muted); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail-text strong { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail-text span, .contact-detail-text a { font-size: 0.98rem; font-weight: 600; color: var(--text); }
.form-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--red));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-group select option { background: var(--dark3); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
  background: rgba(0,212,255,0.03);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 0 40px rgba(0,212,255,0.1), 0 20px 60px rgba(0,0,0,0.4);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(139,92,246,0.1) 100%);
}
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.blog-card p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 120px 0 72px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 60%),
    linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin: 12px 0 16px;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }

/* --- Breadcrumb --- */
.breadcrumb-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: var(--border); }

/* --- Article --- */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; padding: 64px 0; }
.article-body h2 { font-family: var(--font-hero); font-size: 1.7rem; font-weight: 900; text-transform: uppercase; color: var(--text); margin: 44px 0 14px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--cyan); margin: 28px 0 10px; }
.article-body p  { margin-bottom: 18px; line-height: 1.8; color: var(--text-muted); }
.article-body ul { margin: 0 0 18px 20px; list-style: none; }
.article-body ul li { margin-bottom: 10px; line-height: 1.65; color: var(--text-muted); padding-left: 20px; position: relative; }
.article-body ul li::before { content: '▸'; color: var(--cyan); position: absolute; left: 0; }
.article-body ol { margin: 0 0 18px 20px; counter-reset: list; list-style: none; }
.article-body ol li { margin-bottom: 10px; line-height: 1.65; color: var(--text-muted); padding-left: 28px; position: relative; counter-increment: list; }
.article-body ol li::before { content: counter(list); color: var(--cyan); font-weight: 800; position: absolute; left: 0; }
.article-body a { color: var(--cyan); text-decoration: underline; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-widget h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.toc-list { display: flex; flex-direction: column; gap: 10px; }
.toc-list a { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 6px; }
.toc-list a::before { content: '→'; color: var(--cyan); flex-shrink: 0; }
.toc-list a:hover { color: var(--cyan); }

/* --- Author Box --- */
.author-box {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 56px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.author-name { font-weight: 800; color: var(--text); margin-bottom: 2px; }
.author-role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.author-bio  { font-size: 0.9rem; color: var(--text-muted); }

/* --- WhatsApp Float --- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  border: none;
  text-decoration: none;
  animation: floatUp 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.1); color: white; }
.wa-tooltip {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* --- Footer --- */
.site-footer { background: var(--dark2); color: var(--text-muted); padding: 64px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .nav-logo { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--cyan); }
.disclaimer { background: rgba(0,0,0,0.3); padding: 14px 0; font-size: 0.76rem; color: rgba(255,255,255,0.25); text-align: center; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-story-grid,
  .page-split-grid,
  .grid-2col { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 70px; left: 0; right: 0; background: rgba(6,7,15,0.98); backdrop-filter: blur(20px); padding: 20px; gap: 14px; border-bottom: 1px solid var(--border); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links .nav-cta { display: flex; width: 100%; }
  .nav-links .nav-cta a { width: 100%; text-align: center; }

  /* Global section spacing — cut dramatically on mobile */
  secti