/* ================================================================
   LWA Learning Space – Premium Dark Theme Stylesheet
   ================================================================ */

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

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --bg-primary:   #050d1f;
  --bg-secondary: #091326;
  --bg-card:      #0d1c35;
  --bg-card-2:    #0f2040;

  --accent:       #f0b429;
  --accent-dark:  #c98a00;
  --accent-glow:  rgba(240,180,41,0.25);

  --blue:         #1a5aff;
  --blue-light:   #4d85ff;
  --blue-glow:    rgba(26,90,255,0.3);

  --text-primary: #eaf0ff;
  --text-secondary:#9ab0cc;
  --text-muted:   #5a7090;

  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(240,180,41,0.35);

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    40px;

  --shadow-card:  0 25px 60px rgba(0,0,0,0.45);
  --shadow-glow:  0 0 50px rgba(240,180,41,0.18);

  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.2s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; background: transparent; font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Container ────────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Utility ──────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #ff9f43, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 110px 0; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-glow {
  background: linear-gradient(135deg, var(--accent), #e67e22);
  color: #05101f;
  box-shadow: 0 4px 25px rgba(240,180,41,0.4);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s;
}

.btn-glow:hover::before { left: 100%; }
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(240,180,41,0.55);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-outline-hero:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--accent-glow);
}

.pulse-btn {
  animation: pulse-anim 2.5s ease-in-out infinite;
}

@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 4px 25px rgba(240,180,41,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(240,180,41,0.7), 0 0 0 12px rgba(240,180,41,0.08); }
}

/* ── Preloader ────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff9f43);
  border-radius: 3px;
  animation: preload-bar 1.6s ease-in-out infinite;
}

@keyframes preload-bar {
  0%   { width: 0%; margin-left: 0%; }
  50%  { width: 70%; margin-left: 15%; }
  100% { width: 0%; margin-left: 100%; }
}

/* ── Custom Cursor ────────────────────────────────────────────── */
#cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

#cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid rgba(240,180,41,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

@media (hover: none) {
  #cursor, #cursor-follower { display: none; }
}

/* ── Header / Nav ─────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 8px 0;
}

#header.scrolled {
  background: rgba(5,13,31,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: var(--transition-fast);
}

.logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,90,255,0.12) 0%, transparent 65%),
              var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(240,180,41,0.6);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

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

/* Math symbols */
.math-symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.math-symbols span {
  position: absolute;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-weight: 300;
  color: rgba(240,180,41,0.07);
  animation: drift linear infinite;
  user-select: none;
}

@keyframes drift {
  0%   { transform: translateY(110vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-left { flex: 1; }
.hero-right { flex: 1; display: flex; justify-content: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px #22c55e;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-desc strong { color: var(--accent); }

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

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

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.stat-num .currency { font-size: 1.4rem; }

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  width: 360px; height: 460px;
}

.image-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,90,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 3s ease-in-out infinite;
}

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

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.08);
}

.img-fallback {
  display: none;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.img-fallback i { font-size: 4rem; color: var(--accent); }

/* Floating cards on image */
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(13,28,53,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.floating-card i { color: var(--accent); }

.fc1 { top: 10%; left: -28%; animation: float-y 3.5s ease-in-out infinite; }
.fc2 { bottom: 22%; left: -24%; animation: float-y 4s ease-in-out 0.5s infinite; }
.fc3 { top: 22%; right: -20%; animation: float-y 3.8s ease-in-out 1s infinite; }

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-arrow i { color: var(--accent); }

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

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(135deg, rgba(240,180,41,0.12), rgba(26,90,255,0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  display: inline-block;
  margin: 0 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

/* ── Features Section ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,180,41,0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 30px var(--accent-glow);
}

.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(240,180,41,0.05));
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(240,180,41,0.25), rgba(240,180,41,0.1));
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #ff9f43);
  transition: width 0.5s ease;
}

.feature-card:hover .feature-hover-line { width: 100%; }

/* ── Courses Section ──────────────────────────────────────────── */
.courses { background: var(--bg-secondary); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: rgba(240,180,41,0.3);
  box-shadow: var(--shadow-card);
}

.featured-course {
  border-color: rgba(240,180,41,0.35);
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card));
  box-shadow: 0 0 40px rgba(240,180,41,0.1);
}

.course-badge {
  display: inline-block;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.25);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: fit-content;
}

.course-badge.popular {
  background: linear-gradient(135deg, var(--accent), #ff9f43);
  color: #05101f;
  border-color: transparent;
}

.course-icon {
  font-size: 2.2rem;
  color: var(--accent);
}

.course-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.course-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.course-topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-topics li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.course-topics li i {
  color: #22c55e;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-course {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition-fast);
  margin-top: auto;
}

.btn-course:hover { gap: 14px; }

/* ── Process Section ──────────────────────────────────────────── */
.process { background: var(--bg-primary); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(240,180,41,0.08);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: -10px;
  align-self: flex-start;
  padding-left: 20px;
}

.step-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  width: 90%;
  transition: var(--transition);
}

.step-body:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(240,180,41,0.05));
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 18px;
  transition: var(--transition);
}

.step-body:hover .step-icon {
  background: var(--accent);
  color: #05101f;
  transform: scale(1.1);
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 55%;
  right: -8%;
  color: var(--accent);
  font-size: 1.2rem;
  opacity: 0.5;
  z-index: 2;
}

.process-step:last-child .step-connector { display: none; }

/* ── Dates Section ────────────────────────────────────────────── */
.dates { background: var(--bg-secondary); }

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.date-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 42px 36px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.date-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.highlight-card {
  border-color: rgba(240,180,41,0.3);
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card));
  box-shadow: 0 0 40px rgba(240,180,41,0.1);
}

.date-icon {
  width: 60px; height: 60px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
}

.date-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.date-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.date-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.countdown {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 6px 14px;
  border-radius: 50px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── Contact / Apply Section ──────────────────────────────────── */
.contact { background: var(--bg-primary); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-left .section-tag { margin-bottom: 18px; display: inline-block; }

.contact-left .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: left;
  margin-bottom: 18px;
}

.contact-left > p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 0.98rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.benefit i { color: #22c55e; font-size: 1rem; }

/* Form */
.apply-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
}

.form-msg {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 22px;
  font-weight: 500;
}

.form-msg.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}

.form-msg.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width { grid-column: 1 / -1; margin-bottom: 16px; }

.form-group label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
}

.form-group select option { background: var(--bg-card); color: var(--text-primary); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(240,180,41,0.5);
  background: rgba(240,180,41,0.04);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 90px; }

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px;
}

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0a1f4a, #071838, #0d1c35);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,90,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.cta-inner p strong { color: var(--accent); }

.cta-btn { padding: 18px 44px; font-size: 1.05rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}

.footer-brand .logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(240,180,41,0.08);
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.footer-links li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-links li a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-contact p i { color: var(--accent); width: 16px; text-align: center; }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 22px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Scroll to Top ────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05101f;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 800;
  box-shadow: 0 4px 20px rgba(240,180,41,0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(240,180,41,0.6);
}

/* ── Scroll Animation (data-aos) ──────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── Mobile Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .step-connector { display: none; }
  .process-step:nth-child(2) .step-connector { display: none; }
}

@media (max-width: 900px) {
  .hero-content { flex-direction: column; text-align: center; gap: 40px; padding: 60px 0 40px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }

  .hero-image-wrap { width: 280px; height: 360px; }
  .fc1 { left: -8%; }
  .fc2 { left: -6%; }
  .fc3 { right: -6%; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0; top: 72px;
    background: rgba(5,13,31,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 899;
  }

  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; }
  .hamburger { display: flex; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-left .section-title { text-align: center; }
  .contact-left { text-align: center; }
  .contact-benefits { align-items: flex-start; text-align: left; margin: 0 auto; width: fit-content; }

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

@media (max-width: 640px) {
  .section { padding: 80px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .dates-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .apply-form { padding: 28px 22px; }

  .cta-inner { padding: 0 16px; }
  .hero-image-wrap { width: 240px; height: 300px; }
  .fc1, .fc2, .fc3 { display: none; }

  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-divider { display: none; }
}