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

:root {
  --bg-main: #07080a;
  --bg-surface: #101114;
  --bg-surface-hover: #15171c;
  --color-primary: #f1a80a;
  --color-secondary: #ffd000;
  --color-danger: #ff3b30;
  --color-success: #34c759;
  --text-primary: #ffffff;
  --text-secondary: #9ea3ae;
  --text-muted: #626772;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(241, 168, 10, 0.2);
  --gradient-gold: linear-gradient(135deg, #f1a80a 0%, #ffd000 100%);
  --gradient-dark: linear-gradient(180deg, #101114 0%, #07080a 100%);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
}

/* Background Glow Effects */
.glow-sphere {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 168, 10, 0.08) 0%, rgba(241, 168, 10, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.glow-sphere.top-right {
  top: -100px;
  right: -100px;
}

.glow-sphere.bottom-left {
  bottom: -200px;
  left: -200px;
}

.glow-sphere.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Layout Wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.logo img {
  height: 36px;
  width: 36px;
}

.logo-text span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Real-time Crypto Price Card */
.crypto-ticker {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.ticker-top {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 11px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.ticker-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.ticker-change {
  font-size: 11px;
  display: flex;
  align-items: center;
}

.ticker-change.up {
  color: var(--color-success);
}

.ticker-change.down {
  color: var(--color-danger);
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 168, 10, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(241, 168, 10, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* Page Hero Header (Courses, About, What We Do, Contact) */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-block;
  background-color: rgba(241, 168, 10, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(241, 168, 10, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.page-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Index / Hero Section */
.hero {
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(241,168,10,0.06) 0%, transparent 70%);
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: heroGlowPulse 8s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Particle Canvas */
.hero-particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Floating Orbs — continuously drifting */
.hero-orbs {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
}

.orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #F1A80A, transparent 70%);
  top: 10%; left: 5%;
  animation: orbDrift1 18s ease-in-out infinite;
}

.orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.7), transparent 70%);
  top: 60%; right: 10%;
  animation: orbDrift2 22s ease-in-out infinite;
}

.orb-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
  top: 30%; right: 30%;
  animation: orbDrift3 15s ease-in-out infinite;
}

.orb-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #F1A80A, transparent 70%);
  bottom: 10%; left: 40%;
  animation: orbDrift4 20s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(60px, -40px); }
  50%  { transform: translate(30px, 50px); }
  75%  { transform: translate(-40px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-50px, 30px); }
  50%  { transform: translate(-80px, -20px); }
  75%  { transform: translate(20px, -50px); }
  100% { transform: translate(0, 0); }
}

@keyframes orbDrift3 {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(40px, 60px); }
  66%  { transform: translate(-30px, -40px); }
  100% { transform: translate(0, 0); }
}

@keyframes orbDrift4 {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-50px, -30px); }
  40%  { transform: translate(30px, -60px); }
  60%  { transform: translate(70px, 20px); }
  80%  { transform: translate(-20px, 50px); }
  100% { transform: translate(0, 0); }
}

/* Light Streaks — diagonal moving lines */
.hero-streaks {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-streak {
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(241,168,10,0.15) 30%, rgba(255,215,0,0.3) 50%, rgba(241,168,10,0.15) 70%, transparent 100%);
  transform-origin: center;
}

.streak-1 {
  top: 25%;
  left: -100%;
  transform: rotate(-15deg);
  animation: streakSlide 8s linear infinite;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.08) 70%, transparent 100%);
}

.streak-2 {
  top: 55%;
  left: -100%;
  transform: rotate(-12deg);
  animation: streakSlide 12s linear 3s infinite;
  opacity: 0.6;
  background: linear-gradient(90deg, transparent 0%, rgba(241,168,10,0.12) 30%, rgba(255,215,0,0.25) 50%, rgba(241,168,10,0.12) 70%, transparent 100%);
}

.streak-3 {
  top: 80%;
  left: -100%;
  transform: rotate(-18deg);
  animation: streakSlide 10s linear 6s infinite;
  opacity: 0.4;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.1) 70%, transparent 100%);
}

@keyframes streakSlide {
  0%   { transform: translateX(-30%) rotate(-15deg); }
  100% { transform: translateX(80%) rotate(-15deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-top-row .hero-content {
  flex: 1.3;
  min-width: 0;
}

.hero-top-row .hero-graphic {
  flex: 0.7;
}

.hero-bottom-row {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* span colors now handled by .hero-word-gold and .hero-word-white */

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Custom Stacked Hero Title — Animated Professional */
.hero-title-stacked {
  font-size: 100px !important;
  font-weight: 800;
  line-height: 1.05 !important;
  margin-bottom: 30px !important;
  text-transform: none;
  letter-spacing: -2px;
  overflow: visible;
}

/* ── Cycling Two-Word Pairs ── */
.hero-cycle-container {
  position: relative;
  display: block;
  height: 220px;
  overflow: visible;
  width: 100%;
}

/* Each pair holds two stacked words */
.hero-pair {
  position: absolute;
  left: 0; top: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(50px);
  filter: blur(6px);
}

.hero-pair span {
  display: block;
  line-height: 1.1;
}

/*
  3 pairs, total cycle = 9s → 3s per pair
  Pair 0: 0% - 33.33%
  Pair 1: 33.33% - 66.67%
  Pair 2: 66.67% - 100%
*/

.hero-pair:nth-child(1) { animation: pairShow0 9s ease-in-out infinite; }
.hero-pair:nth-child(2) { animation: pairShow1 9s ease-in-out infinite; }
.hero-pair:nth-child(3) { animation: pairShow2 9s ease-in-out infinite; }

/* Pair 1: Master / Bitcoin. */
@keyframes pairShow0 {
  0%    { opacity: 0; transform: translateY(50px);  filter: blur(6px); }
  3%    { opacity: 1; transform: translateY(0);     filter: blur(0); }
  30%   { opacity: 1; transform: translateY(0);     filter: blur(0); }
  35%   { opacity: 0; transform: translateY(-50px); filter: blur(6px); }
  100%  { opacity: 0; }
}

/* Pair 2: Build / Wealth. */
@keyframes pairShow1 {
  0%    { opacity: 0; }
  31%   { opacity: 0; transform: translateY(50px);  filter: blur(6px); }
  36%   { opacity: 1; transform: translateY(0);     filter: blur(0); }
  63%   { opacity: 1; transform: translateY(0);     filter: blur(0); }
  68%   { opacity: 0; transform: translateY(-50px); filter: blur(6px); }
  100%  { opacity: 0; }
}

/* Pair 3: Trade / Smarter. */
@keyframes pairShow2 {
  0%    { opacity: 0; }
  64%   { opacity: 0; transform: translateY(50px);  filter: blur(6px); }
  69%   { opacity: 1; transform: translateY(0);     filter: blur(0); }
  96%   { opacity: 1; transform: translateY(0);     filter: blur(0); }
  100%  { opacity: 0; transform: translateY(-50px); filter: blur(6px); }
}

/* ── White text ── */
.hero-word-white {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* ── Gold text with shimmer ── */
.hero-word-gold {
  background: linear-gradient(
    90deg,
    #F1A80A 0%, #FFD700 25%, #FFA500 50%, #FFD700 75%, #F1A80A 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
  text-shadow: none;
}

@keyframes goldShimmer {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ── Underline on "Smarter." ── */
.hero-word-underline {
  position: relative;
  display: block;
}

.hero-word-underline::before {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5), #fff);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineDraw 0.5s ease forwards;
  animation-delay: 2.5s;
}

@keyframes underlineDraw {
  to { transform: scaleX(1); }
}

/* ── Hero badge ── */
.hero-badge {
  animation: badgeFadeIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes badgeFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Checklist staggered fade-in ── */
.hero-checklist li {
  opacity: 0;
  animation: checklistFadeIn 0.5s ease forwards;
}

.hero-checklist li:nth-child(1) { animation-delay: 2.0s; }
.hero-checklist li:nth-child(2) { animation-delay: 2.1s; }
.hero-checklist li:nth-child(3) { animation-delay: 2.2s; }
.hero-checklist li:nth-child(4) { animation-delay: 2.3s; }
.hero-checklist li:nth-child(5) { animation-delay: 2.4s; }

@keyframes checklistFadeIn {
  0% { opacity: 0; transform: translateX(-15px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ── CTA buttons entrance ── */
.hero-actions {
  opacity: 0;
  animation: ctaSlideUp 0.6s ease forwards;
  animation-delay: 2.6s;
}

@keyframes ctaSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero avatar float animation */
.hero-avatar-wrapper img {
  animation: avatarFloat 4s ease-in-out infinite;
}

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

/* Hero stat cards entrance */
.hero-stat-card-inline {
  opacity: 0;
  animation: statCardReveal 0.5s ease forwards;
}

.hero-cards-row .hero-stat-card-inline:nth-child(1) { animation-delay: 0.8s; }
.hero-cards-row .hero-stat-card-inline:nth-child(2) { animation-delay: 1.0s; }

@keyframes statCardReveal {
  0% { opacity: 0; transform: translateY(15px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-checklist {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-checklist li {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-checklist li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 800;
  font-size: 18px;
}

.sparkline path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-sparkline 3s ease-out forwards;
}

@keyframes draw-sparkline {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-cards-row {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.hero-stat-card-inline {
  background-color: rgba(16, 17, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(241, 168, 10, 0.06);
}

.hero-avatar-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  padding: 12px;
  background: radial-gradient(circle, rgba(241, 168, 10, 0.2) 0%, rgba(241, 168, 10, 0) 70%);
  z-index: 1;
  animation: avatar-entrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animated golden glow ring */
.hero-avatar-wrapper::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(241, 168, 10, 0.5),
    rgba(255, 208, 0, 0.15),
    rgba(241, 168, 10, 0),
    rgba(255, 208, 0, 0.15),
    rgba(241, 168, 10, 0.5)
  );
  animation: rotate-glow-ring 6s linear infinite;
  z-index: -1;
}

.hero-avatar-wrapper::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 1px dashed rgba(241, 168, 10, 0.3);
  animation: rotate-dashed 20s linear infinite;
}

.hero-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(241, 168, 10, 0.15);
  box-shadow: 0 0 40px rgba(241, 168, 10, 0.15), 0 0 80px rgba(241, 168, 10, 0.05);
  animation: avatar-float 5s ease-in-out infinite;
}

/* Avatar entrance animation */
@keyframes avatar-entrance {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Subtle floating */
@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Rotating glow ring */
@keyframes rotate-glow-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stat-card {
  position: absolute;
  background-color: rgba(16, 17, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.hero-stat-card.top-card {
  top: 10px;
  right: -30px;
  box-shadow: var(--border-glow);
}

.hero-stat-card.top-card .stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-stat-card.bottom-card {
  bottom: 20px;
  left: -30px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.hero-stat-card.bottom-card .stat-icon {
  background-color: rgba(241, 168, 10, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.hero-stat-card .stat-title {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

@keyframes rotate-dashed {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Partner Logo Ticker — Infinite Scrolling Marquee */
.logo-ticker {
  background-color: rgba(16, 17, 20, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

/* Edge fade masks */
.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.logo-ticker-track {
  overflow: hidden;
}

.logo-ticker-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.logo-ticker:hover .logo-ticker-inner {
  animation-play-state: paused;
}

.logo-ticker-inner span {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
}

.logo-ticker-inner span:hover {
  color: var(--color-primary);
  text-shadow: 0 0 12px rgba(241, 168, 10, 0.4);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Feature/Pill Tiers Section */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--color-primary);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

/* Grid System - Features & What We Do */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-gold);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background-color: var(--bg-surface-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: #000000;
  border-color: transparent;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-card.featured {
  border-color: rgba(241, 168, 10, 0.3);
  box-shadow: 0 0 15px rgba(241, 168, 10, 0.05);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  background: var(--gradient-gold);
  color: #000000;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Course Cards Section */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.course-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.course-card:hover .course-img img {
  transform: scale(1.05);
}

.course-difficulty {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: var(--color-primary);
  border: 1px solid rgba(241, 168, 10, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.course-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.course-body p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.course-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.module-tag {
  background: rgba(241, 168, 10, 0.06);
  border: 1px solid rgba(241, 168, 10, 0.15);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.enroll-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.enroll-link:hover {
  gap: 10px;
}

.course-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

.course-card.featured-card {
  border-color: rgba(241, 168, 10, 0.3);
}

.course-card.featured-card .btn-enroll {
  background: var(--gradient-gold);
  color: #000000;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-top: auto;
}

.course-card.featured-card .btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 168, 10, 0.2);
}

/* Split Showcase Sections (What We Do steps, About section) */
.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.showcase-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 480px;
  position: relative;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.showcase-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-step-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.showcase-step-card:hover {
  background-color: var(--bg-surface-hover);
  border-color: var(--border-glow);
  transform: translateX(5px);
}

.step-num {
  background-color: var(--color-primary);
  color: #000000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(241, 168, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid var(--border-color);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info h4 {
  font-size: 15px;
  font-weight: 600;
}

.user-info p {
  color: var(--text-muted);
  font-size: 12px;
}

/* FAQ Accordion Component (2-column layout to match design) */
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 60px;
}

.faq-item {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  z-index: 1;
}

.faq-item.active {
  z-index: 10;
}

.faq-item:hover {
  border-color: var(--border-glow);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  color: var(--color-primary);
  font-size: 18px;
  transition: var(--transition-smooth);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

/* Answer — floating glass panel below */
.faq-answer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.3s ease;
  pointer-events: none;
}

.faq-answer-inner {
  margin-top: 6px;
  padding: 20px 28px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(241, 168, 10, 0.15);
  border-radius: var(--border-radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(241, 168, 10, 0.05);
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  /* max-height set by JS */
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-cta-link {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-secondary);
}

.faq-cta-link a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
}

.pricing-card.popular {
  border-color: rgba(241, 168, 10, 0.5);
  box-shadow: 0 0 25px rgba(241, 168, 10, 0.08);
}

.pricing-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.price {
  font-size: 48px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.price span {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features li.disabled::before {
  content: '✕';
  color: var(--text-muted);
}

.btn-pricing {
  width: 100%;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pricing-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.pricing-actions .btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pricing-actions .btn-primary {
  font-weight: 700;
}

/* Call to Action Banner */
.cta-banner {
  background: var(--gradient-gold);
  border-radius: var(--border-radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(241, 168, 10, 0.25);
  margin-bottom: 80px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 46px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
}

.cta-banner .btn {
  background: #000000;
  color: var(--color-secondary);
  border: 1px solid transparent;
}

.cta-banner .btn:hover {
  background: #111111;
  color: var(--text-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Footer Section */
footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

/* Footer Newsletter Form */
.footer-newsletter {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 360px;
}

.footer-newsletter input {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  flex-grow: 1;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.footer-newsletter button {
  background: var(--gradient-gold);
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.footer-newsletter button:hover {
  transform: scale(1.05);
}

.footer-links h4, .footer-social h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gradient-gold);
  color: #000000;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-social-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-social-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Platforms We Teach Tag List */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.tag-pill {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.tag-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* About Us Layout elements */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0 100px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0;
}

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

.stat-num {
  font-size: 48px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.skills-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill-bar-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.skill-bar-bg {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  width: 100%;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

/* Expert Cards */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expert-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.expert-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

.expert-img {
  height: 280px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.expert-card:hover .expert-img img {
  transform: scale(1.05);
}

.expert-body {
  padding: 24px;
}

.expert-body h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.expert-role {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.expert-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Contact Page Form & Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.contact-info-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: var(--border-glow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(241, 168, 10, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-info-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-val {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-subval {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 100px;
}

.contact-showcase {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-color);
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
  min-height: 450px;
}

.contact-showcase img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.2) 0%, rgba(7, 8, 10, 0.8) 100%);
  z-index: 2;
}

.contact-showcase-content {
  position: relative;
  z-index: 3;
  color: var(--text-primary);
  margin-top: auto;
}

.contact-showcase-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-showcase-socials {
  display: flex;
  gap: 12px;
}

.contact-showcase-socials .social-icon {
  background-color: rgba(7, 8, 10, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper {
  padding: 60px;
}

.contact-form-wrapper h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(241, 168, 10, 0.1);
}

textarea.form-control {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 30px;
}

.form-checkbox input {
  margin-top: 4px;
}

.form-checkbox a {
  color: var(--color-primary);
  font-weight: 500;
}

.form-feedback {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.form-feedback.success {
  background-color: rgba(52, 199, 89, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(52, 199, 89, 0.2);
  display: block;
}

.form-feedback.error {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--color-danger);
  border: 1px solid rgba(255, 59, 48, 0.2);
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-form {
  width: 100%;
}

.contact-value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.prop-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.prop-card:hover {
  border-color: var(--border-glow);
}

.prop-icon {
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 16px;
}

.prop-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.prop-card p {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   Blockchain Technology Section
   ═══════════════════════════════════════════ */

/* Intro: Visual + Description */
.blockchain-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.blockchain-visual {
  display: flex;
  justify-content: center;
}

.chain-blocks {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chain-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.chain-block:hover {
  border-color: rgba(241, 168, 10, 0.3);
  transform: translateY(-4px);
}

.chain-block.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(241, 168, 10, 0.15);
}

.block-hash {
  font-family: 'Outfit', monospace;
  font-size: 12px;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 6px;
  opacity: 0.8;
}

.block-label {
  font-weight: 600;
  font-size: 14px;
}

.block-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: pulse-dot 2s infinite;
}

.chain-link {
  color: var(--color-primary);
  font-size: 20px;
  opacity: 0.5;
}

.blockchain-desc h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.blockchain-desc p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.blockchain-desc strong {
  color: var(--color-primary);
}

/* How It Works Steps */
.blockchain-steps-header {
  text-align: center;
  margin-bottom: 30px;
}

.blockchain-steps-header h3 {
  font-size: 24px;
}

.blockchain-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.bc-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.bc-step:hover {
  border-color: rgba(241, 168, 10, 0.25);
  transform: translateY(-3px);
}

.bc-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(241, 168, 10, 0.1);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.bc-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.bc-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Key Features */
.blockchain-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.bc-feature {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.bc-feature:hover {
  border-color: rgba(241, 168, 10, 0.3);
  transform: translateY(-3px);
}

.bc-feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.bc-feature h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.bc-feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Common Uses */
.blockchain-uses {
  text-align: center;
  margin-bottom: 48px;
}

.blockchain-uses h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.bc-uses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bc-use-pill {
  background: rgba(241, 168, 10, 0.06);
  border: 1px solid rgba(241, 168, 10, 0.15);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.bc-use-pill:hover {
  background: rgba(241, 168, 10, 0.12);
  border-color: rgba(241, 168, 10, 0.3);
  transform: translateY(-2px);
}

/* Analogy Callout */
.blockchain-analogy {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(241, 168, 10, 0.04);
  border: 1px solid rgba(241, 168, 10, 0.15);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.analogy-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.analogy-content h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.analogy-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Blockchain CTA */
.blockchain-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.blockchain-cta p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.blockchain-cta strong {
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════
   Blockchain Payment Gateway Modal
   ═══════════════════════════════════════════ */
.crypto-pay-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.crypto-pay-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.crypto-pay-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.crypto-pay-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.crypto-pay-close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Progress Step Indicator */
.pay-progress-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.progress-step.active {
  opacity: 1;
  color: var(--color-primary);
}

.progress-step.done {
  opacity: 1;
  color: #34C759;
}

.progress-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
}

.progress-step.active span {
  background: rgba(241,168,10,0.15);
  color: var(--color-primary);
  box-shadow: 0 0 8px rgba(241,168,10,0.2);
}

.progress-step.done span {
  background: rgba(52,199,89,0.15);
  color: #34C759;
}

/* Course Picker */
.course-pick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
}

.course-pick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  width: 100%;
}

.course-pick-item:hover {
  border-color: rgba(241,168,10,0.4);
  background: rgba(241,168,10,0.05);
  transform: translateX(4px);
}

.cpi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cpi-level {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.cpi-level.new {
  color: #34C759;
}

.cpi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.cpi-desc {
  font-size: 11px;
  color: var(--text-muted);
}

.cpi-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
  padding-left: 16px;
}

/* Registration Form */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reg-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.reg-field input,
.reg-field select {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition-smooth);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.reg-field input:focus,
.reg-field select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(241,168,10,0.1);
}

.reg-field input::placeholder {
  color: var(--text-muted);
}

.reg-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.reg-field select option {
  background: #1a1a1a;
  color: #fff;
}

.reg-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.reg-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}

.reg-terms label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

/* Registration Validation Errors */
.reg-error {
  border-color: #FF3B30 !important;
  box-shadow: 0 0 0 3px rgba(255,59,48,0.15) !important;
}

.reg-error-msg {
  display: block;
  font-size: 11px;
  color: #FF3B30;
  margin-top: 4px;
  font-weight: 500;
}

.reg-terms .reg-error-msg {
  display: block;
  width: 100%;
  margin-top: 6px;
}

@keyframes regShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.reg-shake {
  animation: regShake 0.4s ease;
}

/* OTP Verification */
.reg-email-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.reg-email-row input {
  flex: 1;
}

.otp-send-btn {
  padding: 0 16px;
  background: var(--color-primary);
  color: #000;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.otp-send-btn:hover:not(:disabled) {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.otp-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.otp-send-btn.otp-sent {
  background: rgba(52,199,89,0.15);
  color: #34C759;
  border: 1px solid rgba(52,199,89,0.3);
}

.otp-send-btn.otp-verified {
  background: rgba(52,199,89,0.2);
  color: #34C759;
  border: 1px solid rgba(52,199,89,0.4);
}

.otp-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #34C759;
  margin-top: 6px;
}

.otp-input-wrap {
  animation: fadeSlideDown 0.3s ease;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.otp-boxes {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.otp-box {
  width: 44px;
  height: 52px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  outline: none;
  transition: all 0.2s ease;
  font-family: 'Outfit', monospace;
  caret-color: var(--color-primary);
}

.otp-box:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(241,168,10,0.15);
}

.otp-box.otp-correct {
  border-color: #34C759;
  background: rgba(52,199,89,0.08);
  color: #34C759;
  box-shadow: 0 0 0 3px rgba(52,199,89,0.15);
}

.otp-box.otp-wrong {
  border-color: #FF3B30;
  background: rgba(255,59,48,0.08);
  color: #FF3B30;
  box-shadow: 0 0 0 3px rgba(255,59,48,0.15);
  animation: regShake 0.4s ease;
}

.otp-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.otp-timer {
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.otp-resend-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.otp-resend-btn:hover:not(:disabled) {
  background: rgba(241,168,10,0.1);
}

.otp-resend-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* OTP Demo Toast */
.otp-demo-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(241,168,10,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  z-index: 100001;
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: toastSlideIn 0.4s ease;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.otp-demo-toast.otp-toast-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.otp-toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 13px;
}

.otp-toast-header button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  line-height: 1;
}

.otp-demo-toast p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 4px 0;
}

.otp-toast-code {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 8px;
  text-align: center;
  color: var(--color-primary);
  padding: 10px;
  background: rgba(241,168,10,0.08);
  border: 1px dashed rgba(241,168,10,0.3);
  border-radius: 8px;
  margin: 10px 0;
  font-family: 'Outfit', monospace;
}

.otp-toast-note {
  font-size: 10px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  text-align: center;
}

/* Pay Header */
.pay-header {
  text-align: center;
  margin-bottom: 24px;
}

.pay-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: inline-block;
}

.pay-icon.confirming {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pay-icon.success-icon {
  width: 56px; height: 56px;
  background: rgba(52,199,89,0.15);
  color: #34C759;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 2px solid rgba(52,199,89,0.3);
}

.pay-header h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.pay-header p {
  color: var(--text-muted);
  font-size: 13px;
}

.pay-header.success h3 { color: #34C759; }

/* Plan Summary */
.pay-plan-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(241,168,10,0.05);
  border: 1px solid rgba(241,168,10,0.15);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.pay-plan-name {
  font-weight: 700;
  font-size: 16px;
}

.pay-plan-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
}

.pay-plan-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Crypto Selector */
.pay-crypto-selector {
  margin-bottom: 20px;
}

.pay-crypto-selector label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.pay-coins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pay-coin {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-primary);
}

.pay-coin:hover {
  border-color: rgba(241,168,10,0.3);
}

.pay-coin.active {
  border-color: var(--color-primary);
  background: rgba(241,168,10,0.06);
  box-shadow: 0 0 12px rgba(241,168,10,0.1);
}

.coin-icon {
  font-size: 22px;
  font-weight: 800;
}

.coin-name {
  font-size: 12px;
  font-weight: 600;
}

.coin-ticker {
  font-size: 10px;
  color: var(--text-muted);
}

/* Amount Box */
.pay-amount-box {
  background: rgba(0,0,0,0.3);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.pay-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.pay-amount-row + .pay-amount-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pay-amount-row.highlight {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
}

.pay-crypto-amount {
  color: var(--color-primary);
}

/* Wallet Address */
.pay-wallet-section {
  margin-bottom: 20px;
}

.pay-wallet-section label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.pay-wallet-address {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 14px;
}

.pay-wallet-address code {
  flex: 1;
  font-size: 12px;
  word-break: break-all;
  color: var(--text-secondary);
  font-family: 'Outfit', monospace;
}

.pay-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: var(--transition-smooth);
}

.pay-copy-btn:hover { transform: scale(1.2); }

.pay-wallet-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.pay-wallet-note strong {
  color: var(--color-primary);
}

/* Other Payment Methods */
.pay-other-methods {
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pay-other-methods label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.pay-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pay-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: var(--text-primary);
}

.pay-method-card:hover {
  border-color: rgba(241,168,10,0.3);
  transform: translateY(-2px);
}

.method-icon {
  font-size: 22px;
}

.method-name {
  font-size: 13px;
  font-weight: 700;
}

.method-desc {
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Security Badges */
.pay-security-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pay-security-badges span {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 5px 12px;
}

/* Confirm Button */
.pay-confirm-btn {
  width: 100%;
  font-size: 15px;
  padding: 16px;
}

/* ── Payment App Options (Layer 2) ── */
.pay-app-options {
  margin-bottom: 20px;
}

.pay-back-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 12px;
  transition: 0.3s;
}

.pay-back-btn:hover {
  opacity: 0.7;
}

.pay-app-group label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 600;
}

.pay-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.pay-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
}

.pay-app-card:hover {
  background: rgba(241, 168, 10, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 168, 10, 0.1);
}

.pay-app-icon {
  font-size: 28px;
}

.pay-app-name {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.pay-app-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ── Step 2: Blockchain Confirmation Tracker ── */
.bc-confirm-tracker {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.bc-confirm-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0.35;
  transition: all 0.4s ease;
}

.bc-confirm-step.done {
  opacity: 1;
}

.bc-confirm-step.active {
  opacity: 1;
}

.bc-confirm-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bc-confirm-step.done .bc-confirm-dot {
  background: #34C759;
  box-shadow: 0 0 8px rgba(52,199,89,0.4);
}

.bc-confirm-step.active .bc-confirm-dot {
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(241,168,10,0.4);
  animation: pulse-dot 1.5s infinite;
}

.bc-confirm-info {
  flex: 1;
}

.bc-confirm-info h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.bc-confirm-info p {
  font-size: 11px;
  color: var(--text-muted);
}

.bc-confirm-status {
  font-size: 14px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.bc-confirm-step.done .bc-confirm-status {
  color: #34C759;
}

.bc-confirm-step.active .bc-confirm-status {
  color: var(--color-primary);
}

/* Tx Hash */
.bc-tx-hash {
  margin-bottom: 20px;
}

.bc-tx-hash label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.bc-tx-hash code {
  font-size: 13px;
  color: var(--text-secondary);
  font-family: 'Outfit', monospace;
}

/* Progress Bar */
.bc-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.bc-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--gradient-gold);
  border-radius: 10px;
  transition: width 0.6s ease;
}

.bc-progress-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ── Step 3: Success ── */
.pay-success-details {
  background: rgba(0,0,0,0.3);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.pay-success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.pay-success-row + .pay-success-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pay-success-row code {
  font-size: 12px;
  font-family: 'Outfit', monospace;
  color: var(--text-muted);
}

.pay-status-confirmed {
  color: #34C759;
  font-weight: 700;
}

.pay-success-msg {
  text-align: center;
  background: rgba(52,199,89,0.06);
  border: 1px solid rgba(52,199,89,0.15);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.pay-success-msg p {
  font-size: 14px;
  color: var(--text-secondary);
}

.pay-success-msg strong {
  color: #34C759;
}

#payDoneBtn {
  width: 100%;
}

/* Responsiveness / Mobile Viewports */
@media (max-width: 1024px) {
  .split-showcase, .contact-form-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-top-row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-bottom-row {
    max-width: 100%;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-checklist {
    align-items: center;
  }

  .hero-graphic {
    max-width: 420px;
  }
  
  .showcase-image {
    height: 380px;
  }
  
  .contact-showcase {
    min-height: 280px;
    padding: 30px;
  }
  
  .contact-form-wrapper {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* ─── iOS / Android safe area & touch ─── */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }

  /* Hide glow spheres that cause overflow */
  .glow-sphere {
    display: none;
  }

  /* Prevent any section from causing horizontal scroll */
  section, .hero, .logo-ticker, footer, .cta-banner {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
  }

  /* Navigation */
  header .container {
    height: 64px;
  }

  .logo img {
    height: 28px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 9999;
    list-style: none;
    padding: 0;
  }
  
  .nav-links.active {
    display: flex;
    animation: menuFadeIn 0.25s ease-out;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .nav-links li {
    display: block;
    width: 80%;
    max-width: 300px;
    text-align: center;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    width: 100%;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--color-primary);
  }

  /* Close button styles */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    font-size: 22px;
    z-index: 10000;
    position: relative;
  }
  
  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn {
    padding: 8px 14px;
    font-size: 11px;
    white-space: nowrap;
  }
  
  .crypto-ticker {
    display: none;
  }

  /* ─── Hero Section — Mobile ─── */
  .hero {
    padding: 24px 0 36px;
    min-height: auto;
    display: block;
  }

  .hero .container {
    gap: 20px;
    width: 100%;
  }

  /* Stack: graphic on top, content below */
  .hero-top-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .hero-top-row .hero-content {
    flex: none;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-top-row .hero-graphic {
    flex: none;
    order: -1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-graphic {
    gap: 12px;
    width: 100%;
    flex-shrink: 0;
    align-items: center;
  }

  .hero-content .badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .hero-bottom-row {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-checklist {
    margin-bottom: 16px;
    gap: 8px;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .page-hero {
    padding: 70px 0 30px;
  }

  .page-title {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-content p {
    font-size: 13px;
    margin-bottom: 16px;
    max-width: 90%;
  }

  /* ── Cycling title — mobile ── */
  .hero-title-stacked {
    font-size: 44px !important;
    letter-spacing: -1px;
    margin-bottom: 12px !important;
    line-height: 1.1 !important;
    text-align: center;
    width: 100%;
  }

  .hero-cycle-container {
    height: 105px;
    width: 100%;
    position: relative;
  }

  .hero-pair {
    left: 0 !important;
    right: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-pair span {
    text-align: center;
    width: 100%;
  }

  /* ── Checklist items ── */
  .hero-checklist li {
    font-size: 12px;
    gap: 6px;
    justify-content: center;
  }

  .hero-checklist li::before {
    font-size: 13px;
  }

  /* ── Avatar ── */
  .hero-avatar-wrapper {
    width: 80px;
    height: 80px;
    padding: 3px;
  }

  .hero-avatar-wrapper::before {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
  }

  .hero-avatar-wrapper img {
    border-width: 2px;
  }

  /* ── Cards row ── */
  .hero-cards-row {
    flex-direction: row;
    max-width: 320px;
    width: 100%;
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
  }

  .hero-stat-card-inline {
    width: auto;
    flex: 1;
    padding: 10px 12px;
    font-size: 10px;
  }

  .hero-stat-card-inline .crypto-price-val {
    font-size: 15px !important;
  }

  .hero-stat-card-inline .badge {
    font-size: 7px !important;
    padding: 2px 5px !important;
  }

  .hero-stat-card-inline .stat-title {
    font-size: 8px !important;
  }

  .hero-stat-card-inline .ticker-change {
    font-size: 8px !important;
  }

  #heroLiveChart {
    height: 24px !important;
  }

  /* ── CTA buttons ── */
  .hero-actions {
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    padding: 14px 28px;
    font-size: 15px;
    min-height: 48px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
  }

  /* ─── Section Headers ─── */
  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 12px;
    line-height: 1.5;
  }

  section {
    padding: 40px 0;
  }

  .section-padding {
    padding: 40px 0;
  }

  /* ─── Logo Ticker ─── */
  .logo-ticker {
    padding: 12px 0;
  }

  .logo-ticker-inner {
    gap: 30px;
    animation-duration: 18s;
  }

  .logo-ticker-inner span {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .logo-ticker::before,
  .logo-ticker::after {
    width: 30px;
  }

  /* ─── Cards & Grids ─── */
  .features-grid, .courses-grid, .testimonials-grid, .pricing-grid, .contact-grid, .contact-value-props, .experts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card, .course-card, .testimonial-card, .pricing-card {
    padding: 16px 14px;
  }

  .feature-card h3, .course-card h3 {
    font-size: 16px;
  }

  .feature-card p, .course-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .course-card .course-img {
    height: 140px;
  }

  .course-card .course-img img {
    object-fit: cover;
  }

  /* ─── Testimonial Cards ─── */
  .testimonial-card p {
    font-size: 12px;
  }

  .testimonial-card .author {
    font-size: 13px;
  }

  /* ─── Pricing Cards ─── */
  .pricing-card .price {
    font-size: 32px;
  }

  .pricing-card .plan-name {
    font-size: 16px;
  }

  .pricing-card li {
    font-size: 12px;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-stats .stat-card {
    padding: 14px 12px;
  }

  .about-stats .stat-card h3 {
    font-size: 24px;
  }

  .about-stats .stat-card p {
    font-size: 11px;
  }

  /* ─── Buttons ─── */
  .btn {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .btn-sm {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  /* ─── CTA Banner ─── */
  .cta-banner {
    padding: 32px 16px;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .cta-banner p {
    font-size: 12px;
  }

  /* ─── Showcase ─── */
  .showcase-image {
    height: 180px;
  }

  .showcase-step-card {
    padding: 16px;
    gap: 12px;
  }

  .showcase-step-card h3 {
    font-size: 16px;
  }

  .showcase-step-card p {
    font-size: 12px;
  }

  /* ─── Blockchain Section Mobile ─── */
  .blockchain-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .chain-block {
    padding: 12px 14px;
  }

  .block-hash {
    font-size: 9px;
  }

  .block-label {
    font-size: 11px;
  }

  .chain-link {
    font-size: 14px;
  }

  .blockchain-desc h3 {
    font-size: 20px;
    text-align: center;
  }

  .blockchain-desc p {
    font-size: 12px;
    text-align: center;
  }

  .blockchain-steps-header h3 {
    font-size: 18px;
  }

  .blockchain-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 32px;
  }

  .bc-step {
    padding: 14px 12px;
  }

  .bc-step-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-bottom: 8px;
  }

  .bc-step h4 {
    font-size: 13px;
  }

  .bc-step p {
    font-size: 11px;
  }

  .blockchain-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 32px;
  }

  .bc-feature {
    padding: 16px 12px;
  }

  .bc-feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .bc-feature h4 {
    font-size: 13px;
  }

  .bc-feature p {
    font-size: 11px;
  }

  .blockchain-uses {
    margin-bottom: 28px;
  }

  .blockchain-uses h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .bc-use-pill {
    padding: 6px 12px;
    font-size: 11px;
  }

  .bc-uses-grid {
    gap: 6px;
  }

  .blockchain-analogy {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
    gap: 10px;
    margin-bottom: 28px;
  }

  .analogy-icon {
    font-size: 24px;
  }

  .analogy-content h4 {
    font-size: 14px;
  }

  .analogy-content p {
    font-size: 11px;
  }

  .blockchain-cta p {
    font-size: 12px;
  }

  /* ─── Experts ─── */
  .expert-card img {
    width: 60px;
    height: 60px;
  }

  .expert-card h4 {
    font-size: 14px;
  }

  .expert-card p {
    font-size: 11px;
  }

  /* ─── Contact ─── */
  .contact-showcase {
    min-height: 160px;
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-form-wrapper h3 {
    font-size: 18px;
  }

  .contact-form-wrapper input,
  .contact-form-wrapper textarea,
  .contact-form-wrapper select {
    font-size: 13px;
    padding: 10px 12px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }

  .form-group label {
    font-size: 12px;
  }

  /* ─── Footer ─── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 11px;
  }

  footer h4 {
    font-size: 14px;
  }

  footer p, footer a, footer li {
    font-size: 12px;
  }

  footer {
    padding: 30px 0 16px;
  }

  /* ─── Badge ─── */
  .badge {
    font-size: 9px;
    padding: 4px 10px;
  }

  /* ─── Breadcrumbs ─── */
  .breadcrumbs {
    font-size: 11px;
  }

  /* ─── Page hero subtitle ─── */
  .page-subtitle {
    font-size: 13px;
  }

  /* ─── General text ─── */
  p {
    font-size: 13px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 10px 0 16px;
  }

  .hero .container {
    gap: 12px;
  }

  .hero-top-row {
    gap: 12px;
  }

  .hero-avatar-wrapper {
    width: 110px;
    height: 110px;
    padding: 5px;
  }

  .hero-title-stacked {
    font-size: 26px !important;
  }

  .hero-cards-row {
    flex-direction: column;
    gap: 6px;
  }

  .hero-stat-card-inline {
    padding: 8px 10px;
  }

  .hero-stat-card-inline .crypto-price-val {
    font-size: 16px !important;
  }

  #heroLiveChart {
    height: 25px !important;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-title-stacked {
    font-size: 64px !important;
  }

  section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .page-title {
    font-size: 28px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }

  /* Footer compact */
  .footer-grid {
    gap: 24px;
  }

  footer {
    padding: 40px 0 20px;
  }

  /* Pricing card special */
  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-card .price {
    font-size: 36px;
  }

  /* Logo ticker faster on small screens */
  .logo-ticker-inner {
    gap: 32px;
    animation-duration: 15s;
  }

  .logo-ticker-inner span {
    font-size: 12px;
  }
}

/* Enrollment Modal Dialog Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 920px;
  width: 94%;
  padding: 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(241, 168, 10, 0.08);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(241, 168, 10, 0.3);
  border-radius: 3px;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 22px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.modal-close:hover {
  color: var(--color-primary);
  background: rgba(241, 168, 10, 0.1);
  border-color: var(--color-primary);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-header h3 span {
  color: var(--color-primary);
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ─── Enhanced Enrollment Modal ─── */
.enroll-modal-enhanced {
  padding: 0 !important;
  border-top: 3px solid var(--color-primary);
}

.enroll-modal-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 520px;
}

/* Left Panel: Course Details */
.enroll-course-info {
  background: linear-gradient(170deg, rgba(241, 168, 10, 0.08) 0%, rgba(10, 11, 13, 0.98) 60%);
  padding: 36px 28px;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.enroll-course-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 80% 20%, rgba(241, 168, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.enroll-course-badge {
  font-size: 40px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 168, 10, 0.1);
  border: 1px solid rgba(241, 168, 10, 0.2);
  border-radius: 16px;
}

.enroll-course-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.enroll-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.enroll-meta-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  min-width: 70px;
  text-align: center;
}

.enroll-meta-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.enroll-meta-value {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.enroll-course-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.enroll-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enroll-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.enroll-check {
  color: var(--color-success);
  font-weight: 700;
  font-size: 14px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 199, 89, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.enroll-price-box {
  background: linear-gradient(135deg, rgba(241, 168, 10, 0.12), rgba(241, 168, 10, 0.04));
  border: 1px solid rgba(241, 168, 10, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-top: 4px;
}

.enroll-price-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.enroll-price-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
}

.enroll-rating {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.enroll-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(52, 199, 89, 0.05);
  border: 1px solid rgba(52, 199, 89, 0.15);
  border-radius: 8px;
  padding: 10px 12px;
}

/* Right Panel: Enrollment Form */
.enroll-form-panel {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.enroll-form-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.enroll-form-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.enroll-agreement {
  margin: 8px 0 16px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-secondary);
}

.checkbox-wrapper input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.checkbox-text {
  line-height: 1.4;
}

.enroll-submit-btn {
  width: 100%;
  font-size: 16px;
  padding: 14px 24px;
  font-weight: 700;
}

.enroll-trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.enroll-trust-badges span {
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

/* Responsive: Stack columns on mobile */
@media (max-width: 768px) {
  .enroll-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .enroll-course-info {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    padding: 28px 24px;
  }
  
  .enroll-form-panel {
    padding: 24px;
  }
  
  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .modal-content {
    max-width: 95%;
    max-height: 90vh;
  }
  
  .enroll-trust-badges {
    gap: 10px;
  }
}

/* Newsletter Inline Success Tooltip */
.newsletter-feedback {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.newsletter-feedback.success {
  color: var(--color-success);
  display: block;
}

.newsletter-feedback.error {
  color: var(--color-danger);
  display: block;
}

/* Hero Graphic Layout Upgrade (To match new screenshot) */
.hero-graphic-new {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.avatar-frame-container {
  position: relative;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}

.avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(241, 168, 10, 0.45);
  background: radial-gradient(circle, rgba(241, 168, 10, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  box-shadow: 0 0 30px rgba(241, 168, 10, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.avatar-circle img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  margin-top: 10px;
}

.avatar-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.avatar-badge {
  position: absolute;
  background-color: var(--bg-surface);
  border: 1px solid rgba(241, 168, 10, 0.35);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.badge-top-right {
  top: 15px;
  right: -25px;
  color: var(--color-secondary);
}

.badge-bottom-left {
  bottom: 15px;
  left: -25px;
  color: var(--text-primary);
}

.widgets-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
}

.market-prices-widget {
  background-color: rgba(16, 17, 20, 0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.widget-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.asset-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.asset-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.asset-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.asset-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asset-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.asset-icon.btc {
  background-color: #f1a80a;
}

.asset-icon.eth {
  background-color: #375492;
}

.asset-icon.bnb {
  background-color: #d6a113;
}

.asset-symbol {
  font-size: 13px;
  font-weight: 700;
}

.asset-name {
  font-size: 11px;
  color: var(--text-muted);
}

.asset-market {
  text-align: right;
}

.asset-price {
  font-size: 13px;
  font-weight: 700;
}

.asset-change {
  font-size: 11px;
  font-weight: 600;
}

.asset-change.up {
  color: var(--color-success);
}

.asset-change.down {
  color: var(--color-danger);
}

.sentiment-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sentiment-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.sentiment-val {
  color: var(--color-secondary) !important;
}

.sentiment-bar-bg {
  height: 6px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 3px;
  width: 100%;
}

.sentiment-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
}

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

.stat-mini-card {
  background-color: rgba(16, 17, 20, 0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  text-align: center;
}

.stat-val-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2px;
}

.stat-val-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* Responsiveness adjustments for new layout */
@media (max-width: 1024px) {
  .hero-graphic-new {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .widgets-container {
    width: 100%;
    max-width: 100%;
  }
}


