/* landing-enhanced.css — Premium Landing Page Styles */

/* ─── Particle Background ─────────────────────────── */
.particles-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.5);
  animation: particle-float linear infinite;
}

.particle:nth-child(1)  { left: 5%;  top: 80%; width: 3px; height: 3px; animation-duration: 18s; animation-delay: 0s;   background: rgba(0,242,254,0.6); }
.particle:nth-child(2)  { left: 15%; top: 90%; animation-duration: 22s; animation-delay: -5s; }
.particle:nth-child(3)  { left: 25%; top: 75%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: -2s;  background: rgba(212,175,55,0.5); }
.particle:nth-child(4)  { left: 38%; top: 85%; animation-duration: 20s; animation-delay: -8s; }
.particle:nth-child(5)  { left: 50%; top: 92%; width: 3px; height: 3px; animation-duration: 17s; animation-delay: -4s;  background: rgba(167,139,250,0.5); }
.particle:nth-child(6)  { left: 62%; top: 78%; animation-duration: 24s; animation-delay: -1s; }
.particle:nth-child(7)  { left: 72%; top: 88%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: -6s;  background: rgba(0,242,254,0.4); }
.particle:nth-child(8)  { left: 82%; top: 82%; animation-duration: 21s; animation-delay: -3s; }
.particle:nth-child(9)  { left: 91%; top: 70%; width: 3px; height: 3px; animation-duration: 19s; animation-delay: -7s;  background: rgba(212,175,55,0.4); }
.particle:nth-child(10) { left: 45%; top: 95%; animation-duration: 23s; animation-delay: -9s; }
.particle:nth-child(11) { left: 8%;  top: 60%; width: 2px; height: 2px; animation-duration: 15s; animation-delay: -2s; }
.particle:nth-child(12) { left: 78%; top: 55%; animation-duration: 26s; animation-delay: -4s;  background: rgba(167,139,250,0.4); }

@keyframes particle-float {
  0%   { transform: translateY(0px) translateX(0px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* ─── Navbar Scroll Effect ─────────────────────────── */
.navbar.scrolled {
  background: rgba(8, 8, 12, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* ─── HERO V2 ───────────────────────────────────────── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: hero-zoom-in 8s ease-out forwards;
  z-index: 0;
}

@keyframes hero-zoom-in {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8, 8, 12, 0.98) 0%,
    rgba(8, 8, 12, 0.90) 38%,
    rgba(8, 8, 12, 0.55) 60%,
    rgba(8, 8, 12, 0.20) 100%
  );
  z-index: 1;
}

/* Animated Grid Lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  overflow: hidden;
}

.grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,242,254,0.04) 30%, rgba(0,242,254,0.04) 70%, transparent);
  animation: grid-line-pulse 4s ease-in-out infinite;
}
.grid-line:nth-child(2) { animation-delay: 0.8s; }
.grid-line:nth-child(3) { animation-delay: 1.6s; }
.grid-line:nth-child(4) { animation-delay: 2.4s; }
.grid-line:nth-child(5) { animation-delay: 3.2s; }

@keyframes grid-line-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-v2-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  min-height: calc(100vh - 80px);
}

/* Hero Text */
.hero-text-block {
  animation: slide-in-left 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-title-v2 {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0 24px 0;
  letter-spacing: -0.03em;
}

.gradient-text-white {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffe885 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer-gold 3s linear infinite;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--accent-neon-blue) 0%, #c0f2fb 50%, var(--accent-neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer-gold 3s linear infinite reverse;
}

@keyframes shimmer-gold {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle-v2 {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-subtitle-v2 strong {
  color: #fff;
}

/* Trust Row */
.hero-trust-row {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-main);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  padding: 8px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

/* Buttons */
.hero-v2-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-neon-blue) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 30px rgba(0, 242, 254, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 242, 254, 0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Floating Stat Cards */
.hero-stats-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slide-in-right 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.floating-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(10, 10, 18, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}

.floating-stat-card:hover {
  transform: translateX(-6px);
  border-color: rgba(0,242,254,0.2);
  box-shadow: 0 12px 40px rgba(0,242,254,0.08);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Animations */
.animate-float {
  animation: float-y 4s ease-in-out infinite;
}
.animate-float-delay1 {
  animation: float-y 4.5s ease-in-out 0.5s infinite;
}
.animate-float-delay2 {
  animation: float-y 5s ease-in-out 1s infinite;
}
.animate-float-delay3 {
  animation: float-y 3.8s ease-in-out 1.5s infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  margin-right: 8px;
  animation: dot-blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--accent-gold);
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar-section {
  background: rgba(15, 15, 21, 0.9);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.trust-bar-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.trust-logos-track {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: logos-scroll 30s linear infinite;
}

.trust-logo-item {
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(0.2);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.trust-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

/* ─── COUNTERS V2 ───────────────────────────────────── */
.counters-section-v2 {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.counters-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-card-v2 {
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.counter-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-neon-blue), transparent);
  animation: top-shine 3s linear infinite;
}

@keyframes top-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.counter-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(0,242,254,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.counter-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.counter-num {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--accent-neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.counter-desc {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── FEATURES ──────────────────────────────────────── */
.features-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,242,254,0.3), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,242,254,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.featured-card {
  border-color: rgba(212, 175, 55, 0.25) !important;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(15, 15, 21, 0.8) 100%) !important;
}

.featured-card::after {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent) !important;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-gold), #ffe885);
  color: #08080c;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.feature-icon-bg {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-bg {
  transform: scale(1.08) rotate(-4deg);
}

.feature-card h4 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  background: rgba(0,242,254,0.08);
  border: 1px solid rgba(0,242,254,0.2);
  color: var(--accent-neon-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── SECTION COMMON ───────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(0,242,254,0.08);
  border: 1px solid rgba(0,242,254,0.25);
  color: var(--accent-neon-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ─── SHOWCASE SECTION ──────────────────────────────── */
.showcase-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 21, 0.8) 50%, var(--bg-primary) 100%);
  position: relative;
  z-index: 1;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Fake Browser Preview */
.showcase-screen {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.browser-chrome {
  background: var(--bg-secondary);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-url {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 6px;
  flex-grow: 1;
  text-align: center;
  font-family: monospace;
}

.fake-screen-content {
  display: flex;
  height: 280px;
  background: var(--bg-primary);
}

.fake-sidebar {
  width: 110px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-glass);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fake-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-neon-blue);
  text-align: center;
  padding: 6px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 6px;
}

.fake-menu-item {
  font-size: 10px;
  color: var(--text-muted);
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.active-menu-item {
  background: rgba(0,242,254,0.1);
  border: 1px solid rgba(0,242,254,0.2);
  color: var(--accent-neon-blue);
}

.completed-item {
  color: #34d399;
}

.fake-main {
  flex-grow: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fake-video-player {
  flex-grow: 1;
  background: #000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.fake-play-btn {
  width: 36px;
  height: 36px;
  background: rgba(0,242,254,0.2);
  border: 2px solid var(--accent-neon-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent-neon-blue);
  cursor: pointer;
}

.fake-progress-bar {
  width: 80%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.fake-progress-fill {
  width: 45%;
  height: 100%;
  background: var(--accent-neon-blue);
  border-radius: 3px;
  animation: fake-play 3s linear infinite;
}

@keyframes fake-play {
  from { width: 45%; }
  to   { width: 48%; }
}

.fake-progress-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

.fake-prog-bar-bg {
  flex-grow: 1;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
}

.fake-prog-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-neon-blue));
  border-radius: 3px;
  animation: prog-animate 2s ease-in-out infinite alternate;
}

@keyframes prog-animate {
  from { width: 58%; }
  to   { width: 62%; }
}

/* Floating Badges on Showcase */
.showcase-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  min-width: 180px;
}

.badge-top-right {
  top: -16px;
  right: -16px;
  border-color: rgba(212,175,55,0.3);
}

.badge-bottom-left {
  bottom: -16px;
  left: -16px;
  border-color: rgba(0,242,254,0.2);
}

.showcase-visual {
  position: relative;
}

/* Showcase Features List */
.showcase-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-main);
}

/* ─── COURSES V2 ────────────────────────────────────── */
.courses-section-v2 {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.courses-section-v2 .section-header {
  margin-bottom: 60px;
}

.courses-section-v2 .section-header p {
  max-width: 700px;
  margin: 0 auto;
}

/* ─── INSTRUCTOR SECTION ────────────────────────────── */
.instructor-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(15,15,21,0.9) 0%, rgba(29,53,87,0.1) 50%, rgba(15,15,21,0.9) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.instructor-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.instructor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.instructor-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.instructor-photo-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
}

.instructor-avatar-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-radius: 50%;
  border: 2px solid rgba(184, 144, 71, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 {
  top: -15px; left: -15px; right: -15px; bottom: -15px;
  border-color: rgba(184,144,71,0.2);
  animation-delay: 0s;
}

.ring-2 {
  top: -30px; left: -30px; right: -30px; bottom: -30px;
  border-color: rgba(0,242,254,0.08);
  animation-delay: 1s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.03); opacity: 1; }
}

.instructor-cred-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-main);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.cred-badge:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.2);
}

.instructor-bio h2 {
  font-size: 52px;
  margin-bottom: 8px;
}

.instructor-title {
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instructor-title::before {
  content: '—';
  color: rgba(255,255,255,0.2);
}

.instructor-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.instructor-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.instructor-stat {
  text-align: center;
}

.istat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.istat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── TESTIMONIALS V2 ───────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15,15,21,0.9) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,242,254,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.testimonial-featured {
  border-color: rgba(212,175,55,0.3) !important;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(15,15,21,0.9) 100%) !important;
  grid-column: span 1;
}

.testimonial-featured-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 3px 10px;
  border-radius: 50px;
}

.testimonial-rating {
  font-size: 14px;
}

.testimonial-quote {
  color: var(--text-main);
  font-size: 14.5px;
  line-height: 1.8;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: rgba(0,242,254,0.06);
  position: absolute;
  top: -20px; left: -10px;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-result {
  display: flex;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,242,254,0.08);
  border: 1px solid rgba(0,242,254,0.2);
  color: var(--accent-neon-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-user h4 {
  font-size: 15px;
  color: #fff;
  font-family: var(--font-display);
}

.testimonial-user p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── CTA SECTION ───────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.cta-glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-blob-1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 0, 255, 0.12) 0%, transparent 70%);
}

.cta-blob-2 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 242, 254, 0.10) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
  animation: float-y 3s ease-in-out infinite;
}

.cta-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-trust-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.cta-trust-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── FOOTER V2 ─────────────────────────────────────── */
.footer-v2 {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-glass);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}

.footer-links-col h5 {
  color: #fff;
  font-size: 14px;
  font-family: var(--font-display);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-links-col ul li a:hover {
  color: var(--accent-neon-blue);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 4px;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: center;
  }

  .hero-stats-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-stat-card {
    flex: 1;
    min-width: 200px;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-v2-buttons {
    justify-content: center;
  }

  .counters-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instructor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instructor-photo-col {
    align-items: center;
  }

  .instructor-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title-v2 {
    font-size: 38px;
  }

  .counters-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 34px;
  }

  .instructor-bio h2 {
    font-size: 36px;
  }

  .instructor-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ─── CONSULTATION SECTION ─────────────────────────── */
.consultation-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.consultation-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  padding: 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 22, 34, 0.4) 0%, rgba(15, 15, 21, 0.6) 100%);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.consultation-content h2 {
  font-size: 38px;
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #ffe885 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consultation-lead-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.consultation-lead-text strong {
  color: var(--accent-gold);
}

.consultation-features-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultation-features-mini span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-main);
  font-weight: 500;
}

.consultation-form-wrap {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: var(--radius-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 992px) {
  .consultation-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px 24px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
