/* ══════════════════════════════════════════════════════
   DIGITAL ORTH MASTERS — Premium UI Redesign
   Brand: unchanged. Copy: unchanged. Structure: unchanged.
   Improved: spacing · typography · cards · responsiveness
   ══════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --black:    #00040D;
  --navy:     #000D2E;
  --blue:     #0A2560;
  --electric: #1E6FFF;
  --neon:     #00AAFF;
  --glow:     #4DC8FF;
  --chrome:   #C8D8E8;
  --white:    #F0F8FF;
  --orange:   #F5A623;
  --gold:     #C8861A;

  /* Spacing scale */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 5rem;
  --s7: 7rem;
  --s8: 9rem;

  /* Border radius */
  --r-sm: 4px;
  --r-md: 8px;

  /* Shadows */
  --shadow-blue: 0 0 30px rgba(30,111,255,0.2);
  --shadow-gold: 0 0 30px rgba(245,166,35,0.25);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--neon);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform .1s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(0,170,255,0.45);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform .15s, width .2s, height .2s;
}
@media (hover:none),(pointer:coarse) {
  .cursor, .cursor-ring { display:none !important; }
  body { cursor: auto; }
  .why-card { cursor: auto; }
  .faq-q { cursor: pointer; }
}

/* ── GRID OVERLAY ── */
.grid-overlay {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(30,111,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,4,13,0.96) 0%, transparent 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30,111,255,0.08);
  transition: padding .3s ease;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  height: 44px; width: auto; display: block;
  filter: drop-shadow(0 0 14px rgba(30,111,255,0.45));
  transition: filter .35s ease, transform .35s ease;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 24px rgba(0,170,255,0.85));
  transform: scale(1.04);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(240,248,255,0.5);
  text-decoration: none;
  transition: color .25s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--neon);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--neon); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 11px 26px;
  border: 1px solid var(--electric);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .3s ease, box-shadow .3s ease;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: -1;
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta:hover { box-shadow: 0 0 24px rgba(30,111,255,0.45); }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }

.hero-video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(45,140,255,0.30) 0%, transparent 62%),
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(20,90,220,0.20) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 12% 22%, rgba(0,170,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 88% 78%, rgba(30,111,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 45%, rgba(0,2,10,0.85) 100%),
    linear-gradient(180deg, #00030A 0%, #001034 48%, #00040F 100%);
  z-index: 0;
}

.scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(30,111,255,0.018) 2px, rgba(30,111,255,0.018) 4px
  );
  pointer-events: none; z-index: 1;
}

/* ── HERO HOLOGRAPHIC SCENE ── */
.hero-stars { position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.85; }
.hero-stars svg { width:100%; height:100%; display:block; }

.hero-grid-floor {
  position: absolute; left:-30%; right:-30%; bottom:-8%; height:58%;
  z-index: 1; pointer-events: none; overflow: hidden;
  transform: perspective(620px) rotateX(73deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(to top,rgba(0,0,0,.95),transparent 78%);
  mask-image: linear-gradient(to top,rgba(0,0,0,.95),transparent 78%);
}
.hero-grid-inner {
  position: absolute; left:0; right:0; top:-64px; bottom:-64px;
  background-image:
    linear-gradient(rgba(60,155,255,0.16) 1px,transparent 1px),
    linear-gradient(90deg,rgba(60,155,255,0.16) 1px,transparent 1px);
  background-size: 64px 64px;
  will-change: transform;
  animation: gridFlow 14s linear infinite;
}
@keyframes gridFlow { from{transform:translate3d(0,0,0);} to{transform:translate3d(0,64px,0);} }

.hero-streaks { position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.hero-streaks i {
  position: absolute; display: block;
  width: 240px; height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg,transparent,rgba(180,230,255,0.95),rgba(255,225,170,0.7),transparent);
  filter: blur(.4px);
  opacity: 0;
  animation: streakFly 9s linear infinite;
}
.hero-streaks i:nth-child(1) { top:12%; animation-delay:0s; }
.hero-streaks i:nth-child(2) { top:34%; animation-delay:2.6s; width:180px; }
.hero-streaks i:nth-child(3) { top:58%; animation-delay:5.1s; width:300px; }
.hero-streaks i:nth-child(4) { top:78%; animation-delay:7.3s; width:150px; }
@keyframes streakFly {
  0%   { transform:translate3d(-30vw,0,0) rotate(-16deg); opacity:0; }
  12%  { opacity:1; }
  70%  { opacity:.9; }
  100% { transform:translate3d(130vw,26vh,0) rotate(-16deg); opacity:0; }
}

.hero-3d {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  perspective: 1500px;
  perspective-origin: 50% 45%;
  overflow: hidden;
}
.hero-3d-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero-obj {
  position: absolute;
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
}
.hero-obj svg { width:100%; height:auto; display:block; }

.hero-obj-1 { left:-4%; top:9%; width:min(30vw,400px); opacity:.62; animation:holoA 21s ease-in-out infinite; }
.hero-obj-2 { right:-5%; top:7%; width:min(29vw,380px); opacity:.58; animation:holoB 25s ease-in-out infinite; }
.hero-obj-3 { left:-6%; bottom:2%; width:min(27vw,360px); opacity:.55; animation:holoC 23s ease-in-out infinite; }
.hero-obj-4 { right:-6%; bottom:0%; width:min(28vw,370px); opacity:.55; animation:holoD 27s ease-in-out infinite; }

@keyframes holoA {
  0%{transform:rotateX(16deg) rotateY(-20deg) rotateZ(-6deg) translateY(0);}
  50%{transform:rotateX(-4deg) rotateY(12deg) rotateZ(4deg) translateY(-26px);}
  100%{transform:rotateX(16deg) rotateY(-20deg) rotateZ(-6deg) translateY(0);}
}
@keyframes holoB {
  0%{transform:rotateX(-12deg) rotateY(22deg) rotateZ(7deg) translateY(0);}
  50%{transform:rotateX(8deg) rotateY(-12deg) rotateZ(-4deg) translateY(22px);}
  100%{transform:rotateX(-12deg) rotateY(22deg) rotateZ(7deg) translateY(0);}
}
@keyframes holoC {
  0%{transform:rotateX(-18deg) rotateY(-14deg) rotateZ(5deg) translateY(0);}
  50%{transform:rotateX(6deg) rotateY(16deg) rotateZ(-6deg) translateY(-20px);}
  100%{transform:rotateX(-18deg) rotateY(-14deg) rotateZ(5deg) translateY(0);}
}
@keyframes holoD {
  0%{transform:rotateX(14deg) rotateY(16deg) rotateZ(-8deg) translateY(0);}
  50%{transform:rotateX(-8deg) rotateY(-14deg) rotateZ(6deg) translateY(-24px);}
  100%{transform:rotateX(14deg) rotateY(16deg) rotateZ(-8deg) translateY(0);}
}

.hero-stars .sA { animation:twinkleA 7s ease-in-out infinite; }
.hero-stars .sB { animation:twinkleB 11s ease-in-out infinite; }
@keyframes twinkleA { 0%,100%{opacity:1;} 50%{opacity:.35;} }
@keyframes twinkleB { 0%,100%{opacity:.5;} 50%{opacity:1;} }

@media(max-width:900px) {
  .hero-obj-2 { width:54vw; right:-18%; top:6%; opacity:.32; }
  .hero-obj-3 { width:52vw; left:-18%; bottom:3%; opacity:.28; }
  .hero-obj-1, .hero-obj-4 { display:none; }
  .hero-grid-floor { display:none; }
  .hero-streaks i:nth-child(3) { display:none; }
}
@media(prefers-reduced-motion:reduce) {
  .hero-obj, .hero-streaks i, .hero-grid-floor { animation:none; }
  .hero-3d-inner { transition:none; }
}

.hero-paused .hero-obj,
.hero-paused .hero-grid-inner,
.hero-paused .hero-streaks i,
.hero-paused .hero-stars g,
.hero-paused .particle { animation-play-state:paused !important; }

/* ── HERO CONTENT ── */
.hero-content {
  position: relative; z-index: 5;
  text-align: center;
  max-width: 940px;
  padding: 0 32px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(30,111,255,0.08);
  border: 1px solid rgba(30,111,255,0.28);
  padding: 9px 22px;
  margin-bottom: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--neon);
  text-transform: uppercase;
  animation: fadeInDown 1s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

.hero-h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(38px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease .3s both;
}
.hero-h1 .line1 { display: block; color: var(--white); }
.hero-h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--electric), var(--neon), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: clamp(11px, 1.8vw, 15px);
  letter-spacing: 7px;
  color: rgba(240,248,255,0.45);
  text-transform: uppercase;
  margin-bottom: 56px;
  animation: fadeInUp .8s ease .5s both;
}

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  animation: fadeInUp .8s ease .7s both;
}

/* scroll indicator */
.scroll-line {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line span {
  font-family: 'Space Mono', monospace;
  font-size: 8px; letter-spacing: 3.5px;
  color: rgba(240,248,255,0.28); text-transform: uppercase;
}
.scroll-dot {
  width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--electric), transparent);
  position: relative; overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--neon);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0%{top:-100%;} 100%{top:200%;} }

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn-primary {
  position: relative;
  font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px;
  padding: 17px 44px;
  background: var(--electric);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .25s ease;
  box-shadow: 0 0 32px rgba(30,111,255,0.45), 0 0 70px rgba(30,111,255,0.18);
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left .5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  box-shadow: 0 0 55px rgba(30,111,255,0.75), 0 0 110px rgba(30,111,255,0.3);
  transform: translateY(-2px);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px;
  padding: 16px 44px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(240,248,255,0.22);
  transition: border-color .3s ease, color .3s ease, transform .25s ease, background .3s ease;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0,170,255,0.05);
  transform: translateY(-2px);
}
.btn-secondary:active { transform: scale(0.97); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  padding: 17px 40px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; text-decoration: none;
  box-shadow: 0 0 30px rgba(37,211,102,0.4);
  transition: box-shadow .3s ease, transform .25s ease;
}
.btn-wa:hover {
  box-shadow: 0 0 60px rgba(37,211,102,0.7);
  transform: translateY(-2px);
}
.btn-wa:active { transform: scale(0.97); }

.btn-free {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 2.5px; font-weight: 700;
  color: #0A0F1E;
  background: linear-gradient(135deg, var(--gold), #FFD97D);
  padding: 17px 42px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-free:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(245,166,35,0.45);
}

/* ══════════════════════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════════════════════ */
section { position: relative; z-index: 2; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 4px;
  color: var(--electric);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--electric);
  opacity: 0.8;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--electric), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-section { padding: var(--s8) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-visual { position: relative; }
.about-frame {
  aspect-ratio: 3/4;
  max-width: 380px;
  background: linear-gradient(135deg, rgba(30,111,255,0.1), rgba(0,170,255,0.05));
  border: 1px solid rgba(30,111,255,0.2);
  position: relative; overflow: hidden;
}
.about-frame::before {
  content: 'DR. HESHAM';
  position: absolute; top: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: rgba(30,111,255,0.14);
  font-family: 'Space Mono', monospace;
  font-size: 8px; letter-spacing: 3px; color: var(--neon);
  border-bottom: 1px solid rgba(30,111,255,0.18);
}
.about-frame-inner {
  position: absolute; inset: 0; top: 38px;
  display: flex; align-items: center; justify-content: center;
}
.dr-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.about-frame:hover .dr-photo { transform: scale(1.05); }
.dr-photo-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,13,46,0.35) 0%, transparent 30%, transparent 55%, rgba(0,13,46,0.85) 100%),
    radial-gradient(circle at 50% 40%, rgba(30,111,255,0.18), transparent 65%);
}
.dr-photo-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(30,111,255,0.05) 0px, rgba(30,111,255,0.05) 1px, transparent 1px, transparent 4px);
  opacity: .4;
}
.about-frame::after {
  content: '';
  position: absolute; bottom: 20px; right: 20px;
  width: 28px; height: 28px;
  border-right: 2px solid var(--electric);
  border-bottom: 2px solid var(--electric);
}
.about-frame-tl {
  position: absolute; top: 48px; left: 20px;
  width: 28px; height: 28px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  z-index: 2;
}

.about-stats {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--navy);
  border: 1px solid rgba(30,111,255,0.3);
  padding: 22px 28px;
  box-shadow: var(--shadow-blue);
}
.about-stats-num {
  font-family: 'Orbitron', monospace;
  font-size: 36px; font-weight: 900;
  color: var(--electric); line-height: 1;
}
.about-stats-label {
  font-size: 10px; color: rgba(240,248,255,0.45);
  letter-spacing: 1px; margin-top: 5px;
}

.about-text p {
  font-size: 15.5px; line-height: 1.85;
  color: rgba(240,248,255,0.68);
  margin-bottom: var(--s4);
}
.cred-list { list-style: none; margin: var(--s4) 0; }
.cred-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(30,111,255,0.1);
  font-size: 14px; color: rgba(240,248,255,0.78);
  line-height: 1.5;
}
.cred-list li::before { content: '▸'; color: var(--electric); flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════
   WHY SECTION
   ══════════════════════════════════════════════════════ */
.why-section {
  padding: var(--s8) 0;
  background: linear-gradient(180deg, transparent, rgba(30,111,255,0.035), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: rgba(30,111,255,0.08);
}

.why-card {
  background: rgba(0,4,13,0.92);
  border: 1px solid rgba(30,111,255,0.1);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .4s ease, border-color .4s ease, transform .4s cubic-bezier(.16,1,.3,1);
  cursor: none;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  background: rgba(30,111,255,0.07);
  border-color: rgba(30,111,255,0.28);
  transform: translateY(-5px);
}

.why-num {
  font-family: 'Orbitron', monospace;
  font-size: 52px; font-weight: 900;
  color: rgba(30,111,255,0.13);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -2px;
}
.why-icon {
  font-size: 28px; margin-bottom: 18px;
  filter: drop-shadow(0 0 10px var(--electric));
  display: block;
}
.why-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}
.why-card p { font-size: 13.5px; line-height: 1.78; color: rgba(240,248,255,0.5); }

/* ══════════════════════════════════════════════════════
   MODULES
   ══════════════════════════════════════════════════════ */
.modules-section { padding: var(--s8) 0; }
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 72px;
}

.module-card {
  background: rgba(0,13,46,0.65);
  border: 1px solid rgba(30,111,255,0.14);
  padding: 32px 30px;
  display: flex; gap: 22px; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: border-color .35s ease, background .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.module-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.module-card:hover::after { transform: scaleX(1); }
.module-card:hover {
  border-color: rgba(0,170,255,0.32);
  background: rgba(30,111,255,0.06);
  transform: translateY(-2px);
}

.module-day {
  font-family: 'Orbitron', monospace;
  font-size: 8px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 5px 11px;
  white-space: nowrap; flex-shrink: 0;
  margin-top: 2px;
}
.module-body h4 {
  font-family: 'Orbitron', monospace;
  font-size: 11px; font-weight: 700;
  color: var(--white); letter-spacing: .5px;
  margin-bottom: 12px; line-height: 1.5;
}
.module-body ul { list-style: none; }
.module-body ul li {
  font-size: 12.5px; color: rgba(240,248,255,0.52);
  padding: 5px 0; padding-right: 16px;
  position: relative; line-height: 1.55;
  border-bottom: 1px solid rgba(30,111,255,0.06);
}
.module-body ul li:last-child { border-bottom: none; }
.module-body ul li::before { content: '·'; color: var(--neon); position: absolute; right: 0; }

/* ══════════════════════════════════════════════════════
   WORKFLOW
   ══════════════════════════════════════════════════════ */
.workflow-section {
  padding: var(--s8) 0;
  background: linear-gradient(180deg, transparent, rgba(0,170,255,0.025), transparent);
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--neon), var(--electric), transparent);
  z-index: 0;
  opacity: 0.5;
}

.workflow-step {
  text-align: center;
  padding: 20px 14px;
  position: relative; z-index: 1;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.workflow-step:hover { transform: translateY(-10px); }

.step-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(0,4,13,0.9);
  border: 1px solid rgba(30,111,255,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  position: relative;
  box-shadow: 0 0 22px rgba(30,111,255,0.2);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.workflow-step:hover .step-icon {
  border-color: var(--neon);
  box-shadow: 0 0 40px rgba(0,170,255,0.55);
}
.step-num {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--electric);
  border-radius: 50%;
  font-family: 'Orbitron', monospace;
  font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.step-label {
  font-family: 'Orbitron', monospace;
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 7px;
}
.step-desc { font-size: 11px; color: rgba(240,248,255,0.42); line-height: 1.55; }

/* Holographic display */
.holo-display {
  margin-top: 64px;
  border: 1px solid rgba(30,111,255,0.2);
  background: rgba(0,13,46,0.4);
  padding: 48px 44px 40px;
  position: relative; overflow: hidden;
}
.holo-display::before {
  content: '// DIGITAL WORKFLOW SIMULATION';
  position: absolute; top: 14px; left: 22px;
  font-family: 'Space Mono', monospace;
  font-size: 8px; color: rgba(30,111,255,0.45); letter-spacing: 2px;
}
.holo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.holo-card {
  background: rgba(30,111,255,0.05);
  border: 1px solid rgba(30,111,255,0.14);
  padding: 22px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(0,170,255,0.65);
}
.holo-card-title {
  color: var(--neon); font-size: 8.5px; letter-spacing: 2px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(30,111,255,0.14);
  padding-bottom: 10px;
}
.holo-bar {
  height: 3px;
  background: rgba(30,111,255,0.14);
  border-radius: 2px; margin: 8px 0; overflow: hidden;
}
.holo-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--electric), var(--neon));
  animation: barGrow 3s ease infinite;
}
@keyframes barGrow { 0%{width:0;} 60%{width:var(--w,80%);} 100%{width:var(--w,80%);} }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials-section { padding: var(--s8) 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
}

.testi-card {
  background: rgba(0,13,46,0.55);
  border: 1px solid rgba(30,111,255,0.14);
  padding: 36px 30px;
  position: relative;
  transition: border-color .35s ease, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, background .35s ease;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 16px; left: 22px;
  font-size: 64px; line-height: 1;
  color: rgba(30,111,255,0.1);
  font-family: Georgia, serif;
}
.testi-card:hover {
  border-color: rgba(0,170,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(30,111,255,0.1);
  background: rgba(30,111,255,0.05);
}

.testi-stars { color: var(--orange); font-size: 12px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text {
  font-size: 13.5px; line-height: 1.8;
  color: rgba(240,248,255,0.72);
  margin-bottom: 24px;
}
.testi-text strong { color: var(--white); }
.testi-meta { display: flex; align-items: center; gap: 14px; }
.testi-flag { font-size: 22px; }
.testi-name { font-size: 12px; font-weight: 700; color: var(--neon); letter-spacing: 0.5px; }
.testi-loc { font-size: 10px; color: rgba(240,248,255,0.32); margin-top: 3px; }

/* ══════════════════════════════════════════════════════
   CERTIFICATION
   ══════════════════════════════════════════════════════ */
.cert-section {
  padding: var(--s8) 0;
  background: linear-gradient(180deg, transparent, rgba(30,111,255,0.035), transparent);
}
.cert-card {
  border: 1px solid rgba(245,166,35,0.3);
  background: linear-gradient(135deg, rgba(0,13,46,0.85), rgba(30,111,255,0.04));
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}

.cert-badge {
  width: 160px; height: 160px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    #B8860B 0deg,#FFD700 30deg,#FFF8DC 60deg,#FFD700 90deg,
    #B8860B 120deg,#FFD700 150deg,#FFF8DC 180deg,#FFD700 210deg,
    #B8860B 240deg,#FFD700 270deg,#FFF8DC 300deg,#FFD700 330deg,#B8860B 360deg
  );
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 55px rgba(245,166,35,0.45);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.cert-badge-inner {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  animation: rotateSlow 20s linear infinite reverse;
}
.cert-badge-inner span:first-child {
  font-family: 'Orbitron', monospace;
  font-size: 22px; font-weight: 900; color: var(--orange);
}
.cert-badge-inner span:last-child {
  font-family: 'Space Mono', monospace;
  font-size: 7px; letter-spacing: 2px; color: var(--gold); text-align: center;
}

.cert-visual { position: relative; }
.cert-img-wrap { position: relative; }
.cert-img-frame {
  display: block; position: relative;
  padding: 8px;
  border: 1px solid rgba(245,166,35,0.35);
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(30,111,255,0.06));
  box-shadow: 0 0 48px rgba(245,166,35,0.18);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.cert-img-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 65px rgba(245,166,35,0.3);
}
.cert-img-frame img { width:100%; height:auto; display:block; }
.cert-img-frame::after {
  content: ''; position: absolute; top:0; left:-70%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left .8s ease;
}
.cert-img-frame:hover::after { left: 130%; }

.cert-seal {
  position: absolute; bottom: -26px; left: -18px;
  width: 92px; height: 92px; z-index: 3;
}
.cert-seal .cert-badge { width:92px; height:92px; box-shadow:0 0 32px rgba(245,166,35,0.55); }
.cert-seal .cert-badge-inner { width:74px; height:74px; border-width:2px; gap:1px; }
.cert-seal .cert-badge-inner span:first-child { font-size:14px; }
.cert-seal .cert-badge-inner span:last-child { font-size:5px; letter-spacing:1px; }

.cert-caption {
  margin-top: 24px; text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 8.5px; letter-spacing: 2.5px; color: var(--gold);
}

.cert-text h3 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(18px, 2.8vw, 28px); font-weight: 900;
  color: var(--white); margin-bottom: 18px;
}
.cert-text p {
  font-size: 14px; line-height: 1.85;
  color: rgba(240,248,255,0.62);
  margin-bottom: 20px;
}
.cert-items { list-style: none; }
.cert-items li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,166,35,0.1);
  font-size: 13px; color: rgba(240,248,255,0.72);
}
.cert-items li::before { content: '▸'; color: var(--orange); }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.faq-section { padding: var(--s8) 0; }
.faq-wrap {
  max-width: 820px;
  margin: 72px auto 0;
  display: flex; flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(0,13,46,0.55);
  border: 1px solid rgba(30,111,255,0.12);
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item.open { border-color: rgba(245,166,35,0.35); }

.faq-q {
  width: 100%; background: none; border: none;
  padding: 24px 30px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: none; gap: 18px;
}
.faq-q-text {
  font-family: 'Orbitron', monospace;
  font-size: 11.5px; font-weight: 700;
  color: var(--white); text-align: left; flex: 1;
  line-height: 1.55;
  transition: color .3s ease;
}
.faq-item.open .faq-q-text { color: var(--orange); }

.faq-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(30,111,255,0.1);
  border: 1px solid rgba(30,111,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-arrow {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.4);
  transform: rotate(180deg);
}
.faq-arrow svg {
  width: 12px; height: 12px; stroke: #4DA3FF; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s ease;
}
.faq-item.open .faq-arrow svg { stroke: var(--orange); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .6s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 0 30px 26px;
  font-size: 14px; line-height: 1.8;
  color: rgba(240,248,255,0.58);
  border-top: 1px solid rgba(30,111,255,0.08);
}
.faq-a-inner strong { color: var(--white); }

/* Free course box */
.free-course-box {
  margin-top: 64px;
  padding: 48px 44px;
  border: 1px solid rgba(245,166,35,0.3);
  background: linear-gradient(135deg, rgba(245,166,35,0.07), rgba(30,111,255,0.05));
  text-align: center;
  position: relative; overflow: hidden;
}
.free-course-box::before {
  content: ''; position: absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.free-course-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 8.5px; letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.4);
  padding: 7px 16px;
  margin-bottom: 22px;
}
.free-course-box h3 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(20px, 3vw, 28px); font-weight: 900;
  letter-spacing: .5px; color: var(--white); margin-bottom: 14px;
}
.free-course-box p {
  font-size: 14px; line-height: 1.75;
  color: rgba(240,248,255,0.58);
  max-width: 520px; margin: 0 auto 30px;
}

/* ══════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--s8) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30,111,255,0.12) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 5vw, 66px);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  letter-spacing: -0.5px;
}
.cta-section h2 span {
  background: linear-gradient(90deg, var(--electric), var(--neon), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section > .container > p {
  font-size: 16px; color: rgba(240,248,255,0.52);
  max-width: 500px; margin: 0 auto 54px;
  position: relative; z-index: 1; line-height: 1.8;
}
.cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-alt {
  margin-top: 26px; position: relative; z-index: 1;
  font-size: 12px; color: rgba(240,248,255,0.38);
}
.cta-alt a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(245,166,35,0.35); }
.cta-alt a:hover { color: #fff; border-color: #fff; }

/* ── HERO ALT CTA ── */
.hero-alt-cta {
  margin-top: 28px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 1px;
  color: rgba(240,248,255,0.42);
}
.hero-alt-cta a {
  color: var(--neon); text-decoration: none;
  border-bottom: 1px solid rgba(0,170,255,0.32);
  padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.hero-alt-cta a span { display: inline-block; transition: transform .3s ease; }
.hero-alt-cta a:hover { color: #fff; border-color: #fff; }
.hero-alt-cta a:hover span { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid rgba(30,111,255,0.1);
  padding: 44px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  background: rgba(0,4,13,0.6);
}
.footer-logo { line-height: 0; }
.footer-logo img {
  height: 40px; width: auto; display: block;
  opacity: .88;
  filter: drop-shadow(0 0 12px rgba(30,111,255,0.35));
  transition: opacity .3s ease;
}
.footer-logo img:hover { opacity: 1; }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 9.5px; color: rgba(240,248,255,0.2); letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════
   PARTICLES
   ══════════════════════════════════════════════════════ */
.particles-wrap { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:2; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--neon); opacity: .4;
  animation: float linear infinite;
}
@keyframes float {
  0%  { transform:translateY(100vh) rotate(0deg); opacity:0; }
  10% { opacity:.4; }
  90% { opacity:.4; }
  100%{ transform:translateY(-100px) rotate(360deg); opacity:0; }
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px);}  to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn     { from{opacity:0;} to{opacity:1;} }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.about-stats-num.counting { color: var(--electric); }
.about-stats-num.counted { animation: countPop .5s cubic-bezier(.34,1.56,.64,1) 1; }
@keyframes countPop {
  0%  { transform:scale(1); }
  45% { transform:scale(1.18); text-shadow:0 0 26px rgba(0,170,255,0.65); }
  100%{ transform:scale(1); text-shadow:none; }
}

/* ══════════════════════════════════════════════════════
   TABLET — 900px
   ══════════════════════════════════════════════════════ */
@media(max-width:900px) {
  .why-grid  { grid-template-columns:1fr 1fr; }
  .workflow-steps { grid-template-columns:1fr 1fr; gap:20px; }
  .workflow-steps::before { display:none; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   MOBILE — 768px
   ══════════════════════════════════════════════════════ */
@media(max-width:768px) {
  nav { padding:16px 24px; }
  .nav-links { display:none; }

  .container { padding:0 22px; }

  .about-section, .why-section, .modules-section,
  .workflow-section, .testimonials-section, .cert-section,
  .faq-section { padding: 72px 0; }

  .about-grid { grid-template-columns:1fr; gap:52px; }
  .about-stats { bottom:-22px; right:-10px; padding:16px 20px; }
  .about-stats-num { font-size:28px; }
  .about-frame { max-width:100%; }

  .why-grid { grid-template-columns:1fr; gap:2px; }
  .why-card { padding:32px 26px; }
  .why-num { font-size:40px; }

  .modules-grid { grid-template-columns:1fr; gap:12px; }
  .module-card { padding:24px 22px; gap:16px; }

  .testimonials-grid { grid-template-columns:1fr; gap:12px; }
  .testi-card { padding:28px 24px; }

  .cert-card { grid-template-columns:1fr; padding:36px 28px; gap:40px; }
  .cert-seal { width:70px; height:70px; bottom:-16px; left:-10px; }
  .cert-seal .cert-badge { width:70px; height:70px; }
  .cert-seal .cert-badge-inner { width:56px; height:56px; }
  .cert-seal .cert-badge-inner span:first-child { font-size:11px; }
  .cert-seal .cert-badge-inner span:last-child  { font-size:4px; }

  .holo-grid { grid-template-columns:1fr; }
  .holo-display { padding:36px 22px 28px; }

  .faq-wrap { margin-top:44px; }
  .faq-q { padding:18px 22px; }
  .faq-q-text { font-size:10.5px; }
  .faq-a-inner { padding:0 22px 20px; }

  .free-course-box { padding:36px 22px; margin-top:48px; }
  .free-course-box h3 { font-size:20px; }

  .cta-section { padding:72px 0; }
  .cta-section h2 { font-size:clamp(24px,8vw,40px); }

  footer { padding:32px 22px; flex-direction:column; align-items:flex-start; gap:14px; }
  .footer-logo img { height:34px; }
}

/* ══════════════════════════════════════════════════════
   MOBILE — 640px (vertical workflow)
   ══════════════════════════════════════════════════════ */
@media(max-width:640px) {
  .workflow-steps { grid-template-columns:1fr; gap:36px; padding-top:6px; }
  .workflow-steps::before {
    display:block;
    top:36px; bottom:80px; left:50%; right:auto;
    width:2px; height:auto;
    transform:translateX(-50%);
    background:rgba(30,111,255,0.14);
  }
  .workflow-steps::after {
    content:''; position:absolute;
    top:36px; left:50%; width:2px;
    height:var(--wf-progress,0px);
    max-height:calc(100% - 116px);
    transform:translateX(-50%);
    background:linear-gradient(180deg,rgba(0,170,255,0.25),var(--electric) 30%,var(--neon));
    box-shadow:0 0 16px rgba(0,170,255,0.75);
    z-index:0; border-radius:2px;
  }
  .wf-spark {
    position:absolute; left:50%; top:36px;
    width:9px; height:9px; border-radius:50%;
    transform:translate(-50%,-50%) translateY(var(--wf-progress,0px));
    background:var(--neon);
    box-shadow:0 0 14px rgba(0,170,255,0.95),0 0 30px rgba(0,170,255,0.55);
    z-index:2; pointer-events:none;
    opacity:0; transition:opacity .3s ease;
  }
  .workflow-steps.wf-active .wf-spark { opacity:1; }
  .step-icon { background:#020a1c; }
  .why-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
}
@media(min-width:641px) { .wf-spark { display:none; } }
.wf-spark { transition:opacity .22s ease; }

/* ══════════════════════════════════════════════════════
   TOUCH — scroll-triggered card states
   ══════════════════════════════════════════════════════ */
@media (hover:none),(pointer:coarse) {
  .why-card.in-view::before  { transform:scaleX(1); }
  .why-card.in-view { background:rgba(30,111,255,0.08); border-color:rgba(30,111,255,0.3); transform:translateY(-4px); }
  .module-card.in-view::after{ transform:scaleX(1); }
  .module-card.in-view { border-color:rgba(0,170,255,0.35); background:rgba(30,111,255,0.07); }
  .workflow-step.in-view { transform:translateY(-8px); }
  .workflow-step.in-view .step-icon { border-color:var(--neon); box-shadow:0 0 35px rgba(0,170,255,0.5); }
  .testi-card.in-view { border-color:rgba(0,170,255,0.3); transform:translateY(-4px); box-shadow:0 20px 50px rgba(30,111,255,0.1); }
  .cert-img-frame.in-view { transform:translateY(-6px); box-shadow:0 18px 60px rgba(245,166,35,0.3); }
  .cert-img-frame.in-view::after { left:130%; }
  .about-frame.in-view .dr-photo { transform:scale(1.05); }
  .free-course-box.in-view .btn-free { transform:translateY(-3px); box-shadow:0 14px 40px rgba(245,166,35,0.4); }
}

/* ══════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════ */
@media(prefers-reduced-motion:reduce) {
  .hero-obj, .hero-streaks i, .hero-grid-floor,
  .cert-badge, .cert-badge-inner,
  .reveal, .particle { animation:none !important; }
  .hero-3d-inner { transition:none; }
  .reveal { opacity:1; transform:none; }
}
