/* ==========================================================================
   TRADE4WEALTH TRADING ACADEMY - 100% CLEAN LIGHT FINTECH THEME
   PART 1: VARIABLES, RESET, TYPOGRAPHY, BUTTONS & GLOBAL ACCENTS
   ========================================================================== */

.wdgann-scope{
  /* Light Theme Palette (Zero Dark Colors) */
  --bg-deep-navy: #FFFFFF;      /* Main clean white canvas */
  --bg-midnight: #F8FAFC;       /* Alternating soft slate sections (Slate 50) */
  --bg-card: #FFFFFF;           /* Elevated crisp white cards */
  --bg-card-hover: #FFFFFF;     /* Pure white on hover */
  --border-subtle: #E2E8F0;     /* Crisp 1px slate boundaries (Slate 200) */
  --border-focus: #2563EB;      /* Interactive royal blue focus border */

  /* Accents */
  --electric-blue: #2563EB;     /* Royal blue: links, interactive highlights, active states */
  --electric-blue-dim: rgba(37, 99, 235, 0.08);
  --electric-blue-glow: rgba(37, 99, 235, 0.15);
  --emerald-green: #059669;     /* Wealth emerald green: primary CTA & positive setups */
  --emerald-green-dim: rgba(5, 150, 105, 0.08);
  --emerald-green-glow: rgba(5, 150, 105, 0.2);
  --premium-gold: #B45309;      /* Refined warm amber: NISM badge, ratings, highlights */
  --premium-gold-dim: rgba(180, 83, 9, 0.08);
  --risk-red: #DC2626;          /* Crimson red: stop-loss, risk notices & bearish zones */
  --risk-red-dim: rgba(220, 38, 38, 0.08);

  /* Typography */
  --text-white: #0F172A;        /* Deep slate black (Slate 900) for primary headings */
  --text-cool-grey: #334155;   /* Neutral slate (Slate 700) for descriptions & body copy */
  --text-subtle: #64748B;      /* Cool slate (Slate 500) for timestamps, footnotes, captions */

  /* Gradients */
  --grad-navy-midnight: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --grad-midnight-navy: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  --grad-cta-emerald: linear-gradient(135deg, #059669 0%, #047857 100%);
  --grad-cta-emerald-hover: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --grad-blue-accent: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --grad-gold-accent: linear-gradient(135deg, #D97706 0%, #B45309 100%);

  /* Dimensions & Spacing */
  --container-max: 1240px;
  --header-height: 76px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions & High-End Light Elevation Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 12px 28px -4px rgba(37, 99, 235, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-cta: 0 4px 14px rgba(5, 150, 105, 0.35);

  /* Backward Compatibility Aliases */
  --cyan-accent: var(--electric-blue);
  --cyan-glow: var(--electric-blue-glow);
  --bull-green: var(--emerald-green);
  --bull-glow: var(--emerald-green-glow);
  --bear-red: var(--risk-red);
  --gold-accent: var(--premium-gold);
  --text-primary: var(--text-white);
  --text-secondary: var(--text-cool-grey);
  --text-muted: var(--text-subtle);
  --border-glass: var(--border-subtle);
  --border-glass-hover: var(--border-focus);
}

.wdgann-scope, .wdgann-scope *, .wdgann-scope::before, .wdgann-scope *::before, .wdgann-scope::after, .wdgann-scope *::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wdgann-scope{
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wdgann-scope{
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-deep-navy);
  color: var(--text-cool-grey);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(5, 150, 105, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Crisp Clean Light Financial Grid */
.wdgann-scope::before{
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: 48px 48px;
  background-image: 
    linear-gradient(to right, rgba(226, 232, 240, 0.8) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.8) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.wdgann-scope a{ color: inherit; text-decoration: none; }
.wdgann-scope ul{ list-style: none; }
.wdgann-scope img{ max-width: 100%; height: auto; display: block; }
.wdgann-scope button, .wdgann-scope input, .wdgann-scope select, .wdgann-scope textarea{ font: inherit; color: inherit; }

.wdgann-scope .container{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography & Helpers */
.wdgann-scope h1, .wdgann-scope h2, .wdgann-scope h3, .wdgann-scope h4, .wdgann-scope h5, .wdgann-scope h6{
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wdgann-scope .text-center{ text-align: center; }
.wdgann-scope .text-left{ text-align: left; }
.wdgann-scope .text-green{ color: var(--emerald-green) !important; }
.wdgann-scope .text-red{ color: var(--risk-red) !important; }
.wdgann-scope .text-cyan, .wdgann-scope .text-blue{ color: var(--electric-blue) !important; }
.wdgann-scope .text-gold{ color: var(--premium-gold) !important; }
.wdgann-scope .text-white{ color: var(--text-white) !important; }
.wdgann-scope .text-muted{ color: var(--text-subtle); }

.wdgann-scope .section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--electric-blue-dim);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--electric-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.wdgann-scope .section-eyebrow.gold{
  background: var(--premium-gold-dim);
  border-color: rgba(180, 83, 9, 0.3);
  color: var(--premium-gold);
}

.wdgann-scope .section-eyebrow.green{
  background: var(--emerald-green-dim);
  border-color: rgba(5, 150, 105, 0.3);
  color: var(--emerald-green);
}

.wdgann-scope .section-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.wdgann-scope .section-subtitle{
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-cool-grey);
  max-width: 720px;
  margin: 0 auto 3.25rem auto;
  line-height: 1.65;
}

.wdgann-scope .gradient-text-cyan, .wdgann-scope .gradient-text-blue{
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 55%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA Buttons */
.wdgann-scope .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary CTA: Wealth Emerald Green Gradient with Crisp White Text */
.wdgann-scope .btn-primary{
  background: var(--grad-cta-emerald);
  color: #FFFFFF !important;
  font-weight: 800;
  border: 1px solid rgba(5, 150, 105, 0.3);
  box-shadow: var(--shadow-cta);
}

.wdgann-scope .btn-primary:hover{
  background: var(--grad-cta-emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  color: #FFFFFF !important;
}

/* Secondary CTA: Crisp White with Slate Border */
.wdgann-scope .btn-secondary{
  background: #FFFFFF;
  color: var(--text-white);
  border: 1.5px solid #CBD5E1;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.wdgann-scope .btn-secondary:hover{
  background: #F8FAFC;
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  transform: translateY(-2px);
}

.wdgann-scope .btn-lg{
  padding: 1rem 2.25rem;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

.wdgann-scope .btn-full{ width: 100%; }

.wdgann-scope .btn-pulse::after{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.6);
  animation: wdgann-pulseButton 2.5s infinite;
  pointer-events: none;
}

@keyframes wdgann-pulseButton {
  0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(0, 200, 150, 0); }
  100% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(0, 200, 150, 0); }
}

/* ==========================================================================
   PART 2: NAVBAR, HERO WITH CANDLESTICK WATERMARK & DASHBOARD
   ========================================================================== */

.wdgann-scope .site-header{
  position: sticky;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition-normal);
}

.wdgann-scope .site-header.scrolled{
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border-bottom-color: var(--border-subtle);
}

.wdgann-scope .nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.wdgann-scope .brand-link{
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.wdgann-scope .brand-logo-img{
  height: 46px;
  width: auto;
  object-fit: contain;
}

.wdgann-scope .brand-meta{
  display: flex;
  flex-direction: column;
}

.wdgann-scope .brand-title{
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-white);
  line-height: 1.15;
}

.wdgann-scope .brand-subtitle{
  font-size: 0.72rem;
  color: var(--electric-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wdgann-scope .nav-links{
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wdgann-scope .nav-item a{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-cool-grey);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.wdgann-scope .nav-item a:hover{
  color: var(--electric-blue);
}

.wdgann-scope .nav-item a::after{
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--electric-blue);
  transition: var(--transition-fast);
}

.wdgann-scope .nav-item a:hover::after{
  width: 100%;
}

.wdgann-scope .hamburger-btn{
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-white);
}

.wdgann-scope .hamburger-icon{
  width: 26px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wdgann-scope .hamburger-bar{
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.wdgann-scope .hamburger-btn.active .hamburger-bar:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}
.wdgann-scope .hamburger-btn.active .hamburger-bar:nth-child(2){ opacity: 0; }
.wdgann-scope .hamburger-btn.active .hamburger-bar:nth-child(3){
  transform: translateY(-9px) rotate(-45deg);
}

.wdgann-scope .mobile-nav-drawer{
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-120%);
  transition: transform var(--transition-normal);
  z-index: 999;
}

.wdgann-scope .mobile-nav-drawer.open{
  transform: translateY(0);
}

.wdgann-scope .mobile-nav-link{
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* Hero Section */
.wdgann-scope .hero-section{
  padding: 5.5rem 0 4.5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-deep-navy);
  /* Crisp Technical Candlestick/Chart line watermark pattern on white */
  background-image: 
    radial-gradient(ellipse 65% 55% at 50% 10%, rgba(37, 99, 235, 0.05), transparent 75%),
    url("data:image/svg+xml,%3Csvg width='400' height='200' viewBox='0 0 400 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 160 Q 70 120, 140 145 T 280 80 T 400 60' fill='none' stroke='%232563EB' stroke-width='1.5' stroke-opacity='0.15'/%3E%3Cpath d='M0 180 Q 90 140, 170 155 T 310 100 T 400 80' fill='none' stroke='%23059669' stroke-width='1.2' stroke-opacity='0.12'/%3E%3Cline x1='60' y1='100' x2='60' y2='170' stroke='%232563EB' stroke-width='1' stroke-opacity='0.1'/%3E%3Crect x='56' y='120' width='8' height='30' fill='%232563EB' fill-opacity='0.08'/%3E%3Cline x1='180' y1='60' x2='180' y2='140' stroke='%23059669' stroke-width='1' stroke-opacity='0.1'/%3E%3Crect x='176' y='80' width='8' height='35' fill='%23059669' fill-opacity='0.08'/%3E%3Cline x1='300' y1='40' x2='300' y2='120' stroke='%232563EB' stroke-width='1' stroke-opacity='0.1'/%3E%3Crect x='296' y='55' width='8' height='40' fill='%232563EB' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center bottom;
}

.wdgann-scope .hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.wdgann-scope .hero-content{
  display: flex;
  flex-direction: column;
}

.wdgann-scope .hero-headline{
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.wdgann-scope .hero-subheadline{
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.wdgann-scope .hero-body{
  font-size: 1.05rem;
  color: var(--text-cool-grey);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wdgann-scope .hero-cta-group{
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.wdgann-scope .hero-trust-badge{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-cool-grey);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wdgann-scope .hero-trust-badge svg{
  color: var(--emerald-green);
  flex-shrink: 0;
}

/* Hero Interactive Dashboard Visual */
.wdgann-scope .hero-visual{ position: relative; }

.wdgann-scope .dashboard-mockup{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  position: relative;
  transition: border-color var(--transition-normal);
}

.wdgann-scope .dashboard-mockup:hover{
  border-color: var(--electric-blue);
}

.wdgann-scope .mockup-header{
  padding: 0.9rem 1.25rem;
  background: var(--bg-midnight);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wdgann-scope .mockup-controls{ display: flex; gap: 6px; }
.wdgann-scope .dot{ width: 10px; height: 10px; border-radius: 50%; }
.wdgann-scope .dot.red{ background: var(--risk-red); }
.wdgann-scope .dot.yellow{ background: var(--premium-gold); }
.wdgann-scope .dot.green{ background: var(--emerald-green); }

.wdgann-scope .mockup-title{
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-cool-grey);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.wdgann-scope .mockup-badge{
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--emerald-green-dim);
  color: var(--emerald-green);
  border: 1px solid rgba(5, 150, 105, 0.3);
  font-weight: 700;
}

.wdgann-scope .mockup-body{
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-card);
}

.wdgann-scope .zones-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wdgann-scope .zone-box{
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wdgann-scope .zone-box.bullish{
  background: var(--emerald-green-dim);
  border-color: rgba(5, 150, 105, 0.25);
}

.wdgann-scope .zone-box.bearish{
  background: var(--risk-red-dim);
  border-color: rgba(220, 38, 38, 0.25);
}

.wdgann-scope .zone-label{
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wdgann-scope .zone-box.bullish .zone-label{ color: var(--emerald-green); }
.wdgann-scope .zone-box.bearish .zone-label{ color: var(--risk-red); }

.wdgann-scope .zone-value{
  font-size: 1.25rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--text-white);
}

.wdgann-scope .zone-tag{
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
}

.wdgann-scope .trade-params-bar{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  background: var(--bg-midnight);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
}

.wdgann-scope .param-item .label{
  display: block;
  font-size: 0.65rem;
  color: var(--text-cool-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.wdgann-scope .param-item .val{
  font-size: 0.95rem;
  font-weight: 700;
  font-family: monospace;
  color: var(--text-white);
}

.wdgann-scope .oi-preview-card{
  background: var(--bg-midnight);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.wdgann-scope .oi-header{
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-cool-grey);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.wdgann-scope .oi-bars{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wdgann-scope .oi-bar-row{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}

.wdgann-scope .strike-label{
  width: 52px;
  font-weight: 700;
  font-family: monospace;
  color: var(--text-cool-grey);
}

.wdgann-scope .bar-track{
  flex: 1;
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.wdgann-scope .bar-fill{ height: 100%; border-radius: 4px; }
.wdgann-scope .bar-fill.call{ background: var(--emerald-green); }
.wdgann-scope .bar-fill.put{ background: var(--risk-red); }

.wdgann-scope .mockup-footer-note{
  font-size: 0.7rem;
  color: var(--text-subtle);
  text-align: center;
  padding: 0.6rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-midnight);
}

.wdgann-scope .floating-badge{
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: var(--bg-card);
  border: 1px solid var(--electric-blue);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15), 0 2px 6px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: wdgann-floatBadge 4s ease-in-out infinite;
}

@keyframes wdgann-floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Proof Strip (Alternating Soft Slate Background #F8FAFC) */
.wdgann-scope .proof-strip{
  padding: 2.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .proof-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.wdgann-scope .proof-item{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wdgann-scope .proof-number{
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: monospace;
}

.wdgann-scope .proof-label{
  font-size: 0.78rem;
  color: var(--text-cool-grey);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

/* ==========================================================================
   PART 3: PAIN POINTS, 5 MODULES, TIMELINE, SPLIT ZONE & SYNERGY
   ========================================================================== */

/* Pain Point Section */
.wdgann-scope .pain-section{
  padding: 6.5rem 0;
  position: relative;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .pain-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.wdgann-scope .pain-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.65rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.wdgann-scope .pain-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.6), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.wdgann-scope .pain-card:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .pain-card:hover::before{ opacity: 1; }

.wdgann-scope .pain-icon-wrap{
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--risk-red-dim);
  color: var(--risk-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.wdgann-scope .pain-title{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.wdgann-scope .pain-desc{
  font-size: 0.95rem;
  color: var(--text-cool-grey);
  line-height: 1.65;
}

.wdgann-scope .transition-banner{
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wdgann-scope .trans-text{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}

.wdgann-scope .trans-highlight{ color: var(--emerald-green); }

/* Big Differentiator Flow */
.wdgann-scope .differentiator-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .modules-flow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3.5rem 0;
  position: relative;
}

.wdgann-scope .module-node{
  flex: 1;
  max-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .module-node:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .module-node.highlight{
  border-color: rgba(5, 150, 105, 0.35);
  background: rgba(5, 150, 105, 0.04);
}

.wdgann-scope .node-step{
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.wdgann-scope .module-node.highlight .node-step{
  color: var(--emerald-green);
}

.wdgann-scope .node-name{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
}

.wdgann-scope .flow-connector{
  flex: 0 0 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--emerald-green));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.wdgann-scope .flow-connector::after{
  content: "→";
  color: var(--emerald-green);
  font-size: 1.1rem;
  position: absolute;
  top: -13px;
}

/* Timeline Section */
.wdgann-scope .timeline-section{
  padding: 6.5rem 0;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .timeline-container{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.wdgann-scope .timeline-step{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .timeline-step:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .step-number{
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--electric-blue);
  background: var(--electric-blue-dim);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 1.25rem;
  letter-spacing: 0.8px;
}

.wdgann-scope .step-title{
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.wdgann-scope .step-desc{
  font-size: 0.9rem;
  color: var(--text-cool-grey);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.wdgann-scope .step-tag-pill{
  margin-top: auto;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.wdgann-scope .step-tag-pill.bull{
  background: var(--emerald-green-dim);
  color: var(--emerald-green);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.wdgann-scope .step-tag-pill.bear{
  background: var(--risk-red-dim);
  color: var(--risk-red);
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.wdgann-scope .step-tag-pill.neutral{
  background: var(--electric-blue-dim);
  color: var(--electric-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

/* Zone Split Screen Section */
.wdgann-scope .zone-split-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .split-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.wdgann-scope .split-grid{
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  min-height: 380px;
}

.wdgann-scope .split-side{
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wdgann-scope .split-side.bullish{
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, transparent 80%);
  border-right: 1px solid var(--border-subtle);
}

.wdgann-scope .split-side.bearish{
  background: linear-gradient(135deg, transparent 20%, rgba(220, 38, 38, 0.05) 100%);
  border-left: 1px solid var(--border-subtle);
}

.wdgann-scope .split-tag{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.wdgann-scope .split-side.bullish .split-tag{ color: var(--emerald-green); }
.wdgann-scope .split-side.bearish .split-tag{ color: var(--risk-red); }

.wdgann-scope .split-heading{
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.wdgann-scope .split-side.bullish .split-heading{ color: var(--emerald-green); }
.wdgann-scope .split-side.bearish .split-heading{ color: var(--risk-red); }

.wdgann-scope .split-desc{
  font-size: 0.98rem;
  color: var(--text-cool-grey);
  line-height: 1.65;
}

.wdgann-scope .split-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-midnight);
  position: relative;
}

.wdgann-scope .center-line{
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: dashed #CBD5E1;
}

.wdgann-scope .center-indicator{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-weight: 800;
  font-size: 0.72rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
  z-index: 2;
  text-align: center;
  line-height: 1.2;
  animation: wdgann-oscillateZone 6s ease-in-out infinite alternate;
}

@keyframes wdgann-oscillateZone {
  0% { transform: translateY(-35px); border-color: var(--emerald-green); box-shadow: 0 0 16px var(--emerald-green-glow); color: var(--emerald-green); }
  100% { transform: translateY(35px); border-color: var(--risk-red); box-shadow: 0 0 16px var(--risk-red-dim); color: var(--risk-red); }
}

/* ==========================================================================
   ZONE STRATEGY CHART TERMINALS (TRADINGVIEW SIMULATION UI)
   ========================================================================== */
.wdgann-scope .zone-chart-terminal{
  margin-top: 1.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.wdgann-scope .zone-chart-terminal.bullish-terminal{
  border-top: 3px solid var(--emerald-green);
}

.wdgann-scope .zone-chart-terminal.bearish-terminal{
  border-top: 3px solid var(--risk-red);
}

.wdgann-scope .zone-chart-terminal:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .terminal-bar{
  padding: 0.7rem 1rem;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.wdgann-scope .terminal-symbol{
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wdgann-scope .terminal-symbol strong{
  font-size: 0.92rem;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

.wdgann-scope .t-tf{
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  background: #E2E8F0;
  color: #334155;
  font-size: 0.7rem;
  font-weight: 700;
}

.wdgann-scope .t-ex{
  color: var(--text-subtle);
  font-size: 0.72rem;
  font-weight: 600;
}

.wdgann-scope .t-strat{
  font-size: 0.7rem;
  color: var(--electric-blue);
  font-weight: 700;
  background: var(--electric-blue-dim);
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
}

.wdgann-scope .terminal-price{
  font-weight: 800;
  font-family: monospace;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wdgann-scope .t-diff{
  font-size: 0.74rem;
  font-weight: 700;
}

.wdgann-scope .terminal-body{
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  background: #FFFFFF;
  position: relative;
  min-height: 195px;
}

.wdgann-scope .terminal-svg-container{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 195px;
  background: #FFFFFF;
  border-right: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wdgann-scope .terminal-chart-svg{
  width: 100%;
  height: 100%;
  min-height: 195px;
  display: block;
}

.wdgann-scope .chart-tag-marker{
  position: absolute;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}

.wdgann-scope .chart-tag-marker.buy-marker{
  background: #059669;
  animation: wdgann-pulseGreen 2.2s infinite;
}

.wdgann-scope .chart-tag-marker.sell-marker{
  background: #DC2626;
  animation: wdgann-pulseRed 2.2s infinite;
}

.wdgann-scope .chart-level-tag{
  position: absolute;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
  font-family: monospace;
}

.wdgann-scope .chart-level-tag.entry-tag{
  color: var(--emerald-green);
  border-color: rgba(5, 150, 105, 0.3);
}

.wdgann-scope .chart-level-tag.exit-tag{
  color: var(--risk-red);
  border-color: rgba(220, 38, 38, 0.3);
}

.wdgann-scope .terminal-indicator-card{
  padding: 0.65rem 0.75rem;
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wdgann-scope .ind-table-title{
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  text-align: center;
}

.wdgann-scope .mini-indicator-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
}

.wdgann-scope .mini-indicator-table th{
  padding: 0.28rem 0.35rem;
  font-size: 0.66rem;
  color: #64748B;
  text-transform: uppercase;
  background: #EEF2F6;
  border: 1px solid #E2E8F0;
  font-weight: 700;
  text-align: center;
}

.wdgann-scope .mini-indicator-table td{
  padding: 0.3rem 0.35rem;
  border: 1px solid #E2E8F0;
  font-family: monospace, -apple-system, sans-serif;
  text-align: center;
  color: #1E293B;
  font-weight: 600;
  font-size: 0.72rem;
}

.wdgann-scope .badge-ind{
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.66rem;
  text-transform: capitalize;
}

.wdgann-scope .badge-ind.trend{
  background: #FEF3C7;
  color: #B45309;
}

.wdgann-scope .badge-ind.bull{
  background: #DCFCE7;
  color: #15803D;
}

.wdgann-scope .badge-ind.bear{
  background: #FEE2E2;
  color: #B91C1C;
}

.wdgann-scope .terminal-footer{
  padding: 0.6rem 1rem;
  background: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wdgann-scope .tf-left{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wdgann-scope .t-badge-live{
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--emerald-green-dim);
  color: var(--emerald-green);
  border: 1px solid rgba(5, 150, 105, 0.25);
  text-transform: uppercase;
}

.wdgann-scope .t-badge-live.red{
  background: var(--risk-red-dim);
  color: var(--risk-red);
  border-color: rgba(220, 38, 38, 0.25);
}

.wdgann-scope .t-caption{
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-weight: 600;
}

.wdgann-scope .btn-inspect-chart{
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--electric-blue);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.wdgann-scope .btn-inspect-chart:hover{
  background: var(--electric-blue-dim);
  border-color: var(--electric-blue);
}

@media (max-width: 640px) {
  .wdgann-scope .terminal-body{
    grid-template-columns: 1fr;
  }
  .wdgann-scope .terminal-svg-container{
    border-right: none;
    border-bottom: 1px solid #F1F5F9;
  }
}

/* Synergy Section */
.wdgann-scope .synergy-section{
  padding: 6.5rem 0;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .synergy-grid{
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.wdgann-scope .synergy-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .synergy-card:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .synergy-badge{
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.wdgann-scope .synergy-badge.gann{
  background: var(--premium-gold-dim);
  color: var(--premium-gold);
  border: 1px solid rgba(180, 83, 9, 0.3);
}

.wdgann-scope .synergy-badge.oc{
  background: var(--electric-blue-dim);
  color: var(--electric-blue);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.wdgann-scope .synergy-card h3{
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.wdgann-scope .feature-checklist{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wdgann-scope .feature-check-item{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-cool-grey);
}

.wdgann-scope .feature-check-item strong{
  color: var(--text-white);
}

.wdgann-scope .feature-check-item svg{
  color: var(--emerald-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.wdgann-scope .synergy-media-card{
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-subtle);
  background: #F8FAFC;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.wdgann-scope .synergy-media-card:hover{
  transform: translateY(-2px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .synergy-media-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.wdgann-scope .synergy-media-card:hover .synergy-media-img{
  transform: scale(1.02);
}

.wdgann-scope .media-overlay-badge{
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: background var(--transition-fast);
}

.wdgann-scope .synergy-media-card:hover .media-overlay-badge{
  background: var(--electric-blue);
}

.wdgann-scope .synergy-bridge{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wdgann-scope .bridge-circle{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.wdgann-scope .bridge-text{
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-cool-grey);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ==========================================================================
   PART 4: DATA SHEET, SCANNER, FEATURES, AUDIENCE, TESTIMONIALS & SCREENSHOTS
   ========================================================================== */

/* Data Sheet & Scanner Section */
.wdgann-scope .datasheet-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .datasheet-wrapper{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 3.5rem;
}

.wdgann-scope .datasheet-top-bar{
  padding: 1.25rem 1.75rem;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.wdgann-scope .sheet-title-group{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wdgann-scope .sheet-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.wdgann-scope .sheet-disclaimer-pill{
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--electric-blue-dim);
  color: var(--electric-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-weight: 600;
}

.wdgann-scope .table-responsive{ overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ==========================================================================
   LIVE CHANGE IN OPEN INTEREST (OI) TABLE STYLES
   ========================================================================== */
.wdgann-scope .oi-datasheet-top-bar{
  padding: 1rem 1.5rem;
  background: #0B192C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.wdgann-scope .oi-title-group{
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.wdgann-scope .oi-sheet-title{
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wdgann-scope .dot.green-pulse{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  display: inline-block;
  animation: wdgann-pulseGreen 2s infinite;
}

.wdgann-scope .dot.red-pulse{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 10px #EF4444;
  display: inline-block;
  animation: wdgann-pulseRed 2s infinite;
}

@keyframes wdgann-pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes wdgann-pulseRed {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.wdgann-scope .oi-badge-group{
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wdgann-scope .oi-live-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: #10B981;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.wdgann-scope .oi-live-pill .dot-inner{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-block;
}

.wdgann-scope .oi-symbol-pill{
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: #1E3A8A;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

.wdgann-scope .oi-change-table{
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: inherit;
  font-size: 0.86rem;
}

.wdgann-scope .oi-change-table th{
  padding: 0.7rem 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #CBD5E1;
}

.wdgann-scope .oi-change-table .th-time, .wdgann-scope .oi-change-table .th-spot{
  background: #0B192C;
  color: #FFFFFF;
  font-weight: 800;
  vertical-align: middle;
}

.wdgann-scope .oi-change-table .th-pos{
  background: #16A34A;
  color: #FFFFFF;
  font-weight: 800;
  vertical-align: middle;
}

.wdgann-scope .oi-change-table .th-group-oi{
  background: #D97706;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
}

.wdgann-scope .oi-change-table .th-group-pct{
  background: #1E3A8A;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.82rem;
}

.wdgann-scope .oi-change-table .th-sub-ce, .wdgann-scope .oi-change-table .th-sub-ce-pct{
  background: #DCFCE7;
  color: #0F172A;
  font-weight: 800;
}

.wdgann-scope .oi-change-table .th-sub-pe, .wdgann-scope .oi-change-table .th-sub-pe-pct{
  background: #FEE2E2;
  color: #0F172A;
  font-weight: 800;
}

.wdgann-scope .oi-change-table .th-sub-diff{
  background: #FEF3C7;
  color: #0F172A;
  font-weight: 800;
}

.wdgann-scope .oi-change-table td{
  padding: 0.65rem 0.85rem;
  border: 1px solid #E2E8F0;
  font-family: monospace, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.84rem;
  white-space: nowrap;
}

.wdgann-scope .oi-change-table .td-time{
  background: #F8FAFC;
  font-weight: 700;
  color: #0F172A;
}

.wdgann-scope .oi-change-table .td-ce{
  background: #F0FDF4;
  color: #15803D;
  font-weight: 700;
  text-align: right;
  padding-right: 1.25rem;
}

.wdgann-scope .oi-change-table .td-pe{
  background: #FFF1F2;
  color: #B91C1C;
  font-weight: 700;
  text-align: right;
  padding-right: 1.25rem;
}

.wdgann-scope .oi-change-table .td-diff{
  background: #FFFBEB;
  font-weight: 700;
  text-align: right;
  padding-right: 1.25rem;
}

.wdgann-scope .oi-change-table .td-diff.diff-neg{
  background: #FEF2F2;
  color: #DC2626;
}

.wdgann-scope .oi-change-table .td-diff.diff-pos{
  background: #F0FDF4;
  color: #16A34A;
}

.wdgann-scope .oi-change-table .td-ce-pct{
  background: #F0FDF4;
  font-weight: 700;
}

.wdgann-scope .oi-change-table .td-pe-pct{
  background: #FFF1F2;
  font-weight: 700;
}

.wdgann-scope .oi-change-table .pct-pos{ color: #16A34A; }
.wdgann-scope .oi-change-table .pct-neg{ color: #DC2626; }

.wdgann-scope .oi-change-table .td-spot{
  background: #FFFFFF;
  font-weight: 700;
  color: #0F172A;
}

.wdgann-scope .oi-change-table .td-pos{
  background: #FFFFFF;
  vertical-align: middle;
}

.wdgann-scope .oi-change-table .signal-put-badge{
  display: inline-block;
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #F87171;
  border-radius: var(--radius-full);
  padding: 0.2rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.25);
}

.wdgann-scope .oi-change-table tr:hover td{
  filter: brightness(0.97);
}

.wdgann-scope .oi-change-table .arrow-up{
  color: #16A34A;
  font-size: 0.68rem;
  margin-right: 3px;
}

.wdgann-scope .oi-change-table .arrow-down{
  color: #DC2626;
  font-size: 0.68rem;
  margin-right: 3px;
}

/* ==========================================================================
   BRAHMASTRA BULLISH & BEARISH SCANNER TABLES
   ========================================================================== */
.wdgann-scope .scanner-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  transition: border-color var(--transition-normal);
}

.wdgann-scope .scanner-card:hover{
  border-color: var(--electric-blue);
}

.wdgann-scope .scanner-info h3{
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.wdgann-scope .scanner-desc{
  font-size: 1rem;
  color: var(--text-cool-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.wdgann-scope .scanner-chips{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wdgann-scope .scanner-chip{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  color: var(--text-cool-grey);
  font-weight: 600;
}

.wdgann-scope .scanner-chip svg{ color: var(--electric-blue); }

.wdgann-scope .brahmastra-scanner-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.wdgann-scope .brahmastra-box{
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.wdgann-scope .brahmastra-box:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .brahmastra-box-header{
  padding: 0.75rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.wdgann-scope .brahmastra-box-header.bullish{
  background: #16A34A;
}

.wdgann-scope .brahmastra-box-header.bearish{
  background: #DC2626;
}

.wdgann-scope .brahmastra-stock-list{
  display: flex;
  flex-direction: column;
}

.wdgann-scope .brahmastra-stock-item{
  padding: 0.7rem 0.5rem;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0F172A;
  border-top: 1px solid #E2E8F0;
  font-family: inherit;
  letter-spacing: 0.03em;
  transition: background var(--transition-fast);
}

.wdgann-scope .brahmastra-stock-item:hover{
  background: #F8FAFC;
  color: var(--electric-blue);
}

/* Unified Dashboard */
.wdgann-scope .unified-section{
  padding: 6.5rem 0;
  text-align: center;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .unified-dashboard-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  max-width: 900px;
  margin: 3rem auto 0 auto;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.wdgann-scope .unified-widget{
  background: var(--bg-midnight);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wdgann-scope .widget-label{
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-cool-grey);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.wdgann-scope .widget-value{
  font-size: 1.25rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--text-white);
}

/* 8 Features Grid */
.wdgann-scope .features-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .features-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.wdgann-scope .feature-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.65rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.wdgann-scope .feature-card:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .feature-icon-box{
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--electric-blue-dim);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.wdgann-scope .feature-title{
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.wdgann-scope .feature-desc{
  font-size: 0.9rem;
  color: var(--text-cool-grey);
  line-height: 1.65;
}

/* Audience Section */
.wdgann-scope .audience-section{
  padding: 6.5rem 0;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .audience-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wdgann-scope .audience-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .audience-card:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .audience-header{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wdgann-scope .audience-icon-wrap{
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--electric-blue-dim);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
}

.wdgann-scope .audience-role{
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.wdgann-scope .audience-desc{
  font-size: 0.95rem;
  color: var(--text-cool-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.wdgann-scope .audience-card-footer{
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* Testimonials */
.wdgann-scope .testimonials-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .testimonial-track{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.wdgann-scope .testimonial-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .testimonial-card:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .rating-stars{
  display: flex;
  gap: 4px;
  color: var(--premium-gold);
  margin-bottom: 1.25rem;
}

.wdgann-scope .testimonial-quote{
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-white);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.wdgann-scope .testimonial-author{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wdgann-scope .author-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #059669);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
}

.wdgann-scope .author-meta .name{
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}

.wdgann-scope .author-meta .role{
  font-size: 0.8rem;
  color: var(--text-cool-grey);
}

/* Screenshot Wall */
.wdgann-scope .screenshot-section{
  padding: 6.5rem 0;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .screenshot-masonry{
  columns: 3;
  column-gap: 1.5rem;
  margin-top: 3.5rem;
}

.wdgann-scope .screenshot-item{
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .screenshot-item:hover{
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-card-hover);
}

.wdgann-scope .screenshot-img-wrap{
  position: relative;
  overflow: hidden;
}

.wdgann-scope .screenshot-img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-smooth);
}

.wdgann-scope .screenshot-item:hover .screenshot-img{ transform: scale(1.025); }

.wdgann-scope .screenshot-overlay{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.wdgann-scope .screenshot-item:hover .screenshot-overlay{ opacity: 1; }

.wdgann-scope .screenshot-caption{
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.wdgann-scope .lightbox-modal{
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.wdgann-scope .lightbox-modal.active{ display: flex; }

.wdgann-scope .lightbox-wrapper{
  max-width: 900px;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wdgann-scope .lightbox-image{
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.wdgann-scope .lightbox-caption-bar{
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 700;
}

.wdgann-scope .lightbox-close{
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   PART 5: INSTRUCTOR, REGISTRATION, FAQ, FOOTER & RESPONSIVE
   ========================================================================== */

/* Authority / Instructor Spotlight */
.wdgann-scope .authority-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .authority-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.wdgann-scope .instructor-visual{
  position: relative;
  text-align: center;
}

.wdgann-scope .instructor-frame{
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 185, 66, 0.05) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.wdgann-scope .instructor-img{
  max-height: 480px;
  width: auto;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

.wdgann-scope .certificate-badge-card{
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(180, 83, 9, 0.35);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wdgann-scope .cert-icon{ color: var(--premium-gold); }
.wdgann-scope .cert-text .title{
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-white);
}
.wdgann-scope .cert-text .sub{
  font-size: 0.72rem;
  color: var(--text-cool-grey);
}

.wdgann-scope .authority-content h2{
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.wdgann-scope .authority-subtitle{
  font-size: 1.15rem;
  color: var(--electric-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.wdgann-scope .authority-bio{
  font-size: 1rem;
  color: var(--text-cool-grey);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wdgann-scope .credentials-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.wdgann-scope .cred-item{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-white);
}

.wdgann-scope .cred-item svg{
  color: var(--emerald-green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Registration Form */
.wdgann-scope .register-section{
  padding: 6.5rem 0;
  position: relative;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .register-card-wrapper{
  max-width: 780px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  position: relative;
}

.wdgann-scope .form-header{
  text-align: center;
  margin-bottom: 2.5rem;
}

.wdgann-scope .form-header h2{
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.wdgann-scope .form-header p{
  color: var(--text-cool-grey);
  font-size: 1rem;
}

.wdgann-scope .lead-form{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wdgann-scope .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wdgann-scope .form-group{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wdgann-scope .form-label{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

.wdgann-scope .form-label .required{ color: var(--risk-red); }

.wdgann-scope .form-control{
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.wdgann-scope .form-control:focus{
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #FFFFFF;
}

.wdgann-scope .form-control option{
  background: #FFFFFF;
  color: var(--text-white);
}

.wdgann-scope .checkbox-group{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-cool-grey);
  cursor: pointer;
  line-height: 1.5;
}

.wdgann-scope .checkbox-group input{
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--emerald-green);
  cursor: pointer;
}

.wdgann-scope .form-status{
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

.wdgann-scope .form-status.success{
  display: block;
  background: var(--emerald-green-dim);
  color: var(--emerald-green);
  border: 1px solid rgba(5, 150, 105, 0.35);
}

.wdgann-scope .form-status.error{
  display: block;
  background: var(--risk-red-dim);
  color: var(--risk-red);
  border: 1px solid rgba(220, 38, 38, 0.35);
}

.wdgann-scope .btn-spinner{
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: wdgann-spin 0.8s linear infinite;
}

@keyframes wdgann-spin { to { transform: rotate(360deg); } }

/* FAQ Section */
.wdgann-scope .faq-section{
  padding: 6.5rem 0;
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.wdgann-scope .faq-container{
  max-width: 820px;
  margin: 3.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wdgann-scope .faq-card{
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.wdgann-scope .faq-card:hover{
  border-color: var(--electric-blue);
}

.wdgann-scope .faq-card.open{
  border-color: var(--electric-blue);
  background: #F8FAFC;
}

.wdgann-scope .faq-header{
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.wdgann-scope .faq-question{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wdgann-scope .faq-icon-toggle{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--electric-blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.wdgann-scope .faq-card.open .faq-icon-toggle{
  transform: rotate(45deg);
  background: var(--electric-blue);
  color: #FFFFFF;
}

.wdgann-scope .faq-body{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.wdgann-scope .faq-card.open .faq-body{
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.wdgann-scope .faq-body p{
  font-size: 0.98rem;
  color: var(--text-cool-grey);
  line-height: 1.7;
}

/* Final Closing CTA */
.wdgann-scope .final-cta-section{
  padding: 7rem 0;
  position: relative;
  text-align: center;
  background-color: var(--bg-deep-navy);
}

.wdgann-scope .final-cta-card{
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-xl);
  padding: 4.5rem 2.5rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.wdgann-scope .final-cta-card h2{
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.wdgann-scope .final-cta-card p{
  font-size: 1.2rem;
  color: var(--text-cool-grey);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.wdgann-scope .final-disclaimer{
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-top: 2rem;
}

/* Footer */
.wdgann-scope .site-footer{
  background-color: var(--bg-midnight);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem 0;
}

.wdgann-scope .footer-top{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.wdgann-scope .footer-brand h4{
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.wdgann-scope .footer-brand p{
  font-size: 0.9rem;
  color: var(--text-cool-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.wdgann-scope .footer-col h5{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.wdgann-scope .footer-col ul{
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wdgann-scope .footer-col a{
  font-size: 0.88rem;
  color: var(--text-cool-grey);
  transition: var(--transition-fast);
}

.wdgann-scope .footer-col a:hover{ color: var(--electric-blue); }

.wdgann-scope .footer-contact-info{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-cool-grey);
}

.wdgann-scope .footer-disclaimer-box{
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--premium-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.wdgann-scope .footer-disclaimer-box p{
  font-size: 0.8rem;
  color: var(--text-cool-grey);
  line-height: 1.7;
}

.wdgann-scope .footer-bottom-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sticky Mobile Bottom CTA */
.wdgann-scope .sticky-mobile-cta{
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.85rem 1.25rem;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.wdgann-scope .sticky-mobile-cta.visible{ transform: translateY(0); }

.wdgann-scope .mobile-cta-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wdgann-scope .mobile-cta-info{
  display: flex;
  flex-direction: column;
}

.wdgann-scope .mobile-cta-title{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

.wdgann-scope .mobile-cta-sub{
  font-size: 0.72rem;
  color: var(--electric-blue);
  font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .wdgann-scope .hero-grid{ grid-template-columns: 1fr; gap: 3rem; }
  .wdgann-scope .pain-grid{ grid-template-columns: repeat(2, 1fr); }
  .wdgann-scope .timeline-container{ grid-template-columns: 1fr; gap: 1rem; }
  .wdgann-scope .modules-flow{ flex-direction: column; gap: 1.5rem; }
  .wdgann-scope .flow-connector{ width: 2px; height: 30px; }
  .wdgann-scope .flow-connector::after{ content: "↓"; top: auto; left: -6px; }
  .wdgann-scope .split-grid{ grid-template-columns: 1fr; }
  .wdgann-scope .split-center{
    height: 80px;
    border-left: none; border-right: none;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .wdgann-scope .center-line{ width: 100%; height: 2px; top: 50%; left: 0; }
  .wdgann-scope .center-indicator{ animation: none; }
  .wdgann-scope .synergy-grid{ grid-template-columns: 1fr; }
  .wdgann-scope .synergy-bridge{ margin: 1rem 0; }
  .wdgann-scope .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .wdgann-scope .screenshot-masonry{ columns: 2; }
  .wdgann-scope .authority-grid{ grid-template-columns: 1fr; }
  .wdgann-scope .footer-top{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wdgann-scope .brand-title{ font-size: 0.92rem; }
  .wdgann-scope .brand-subtitle{ font-size: 0.65rem; }
  .wdgann-scope .nav-links, .wdgann-scope .nav-cta{ display: none; }
  .wdgann-scope .hamburger-btn{ display: block; }
  .wdgann-scope .proof-grid{ grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .wdgann-scope .pain-grid{ grid-template-columns: 1fr; }
  .wdgann-scope .features-grid{ grid-template-columns: 1fr; }
  .wdgann-scope .audience-grid{ grid-template-columns: 1fr; }
  .wdgann-scope .testimonial-track{ grid-template-columns: 1fr; }
  .wdgann-scope .scanner-card{ grid-template-columns: 1fr; padding: 1.5rem; }
  .wdgann-scope .unified-dashboard-card{ grid-template-columns: 1fr; padding: 1.5rem; }
  .wdgann-scope .form-row{ grid-template-columns: 1fr; }
  .wdgann-scope .register-card-wrapper{ padding: 2rem 1.5rem; }
  .wdgann-scope .sticky-mobile-cta{ display: block; }
  .wdgann-scope .footer-top{ grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wdgann-scope .brand-title{ font-size: 0.82rem; }
  .wdgann-scope .brahmastra-scanner-grid{ grid-template-columns: 1fr; gap: 1rem; }
  .wdgann-scope .screenshot-masonry{ columns: 1; }
  .wdgann-scope .zones-container{ grid-template-columns: 1fr; }
  .wdgann-scope .trade-params-bar{ grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
