/* ========================================
   Victory Edu-Tech Academy — White Theme
   ======================================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --primary: #4F46E5;
  --primary-light: #818CF8;
  --primary-dark: #3730A3;
  --primary-glow: rgba(79, 70, 229, 0.12);
  --primary-50: #EEF2FF;
  --primary-100: #E0E7FF;

  /* Accent */
  --accent: #06B6D4;
  --accent-warm: #F43F5E;
  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  --accent-pink: #EC4899;
  --accent-orange: #F97316;

  /* Neutrals — White Theme */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-soft: #F1F5F9;
  --bg-muted: #E2E8F0;
  --bg-card: #FFFFFF;
  --bg-section-alt: #F8FAFC;
  --bg-section-dark: #0F172A;
  --bg-section-gradient: linear-gradient(135deg, #EEF2FF 0%, #FDF2F8 50%, #ECFDF5 100%);

  --border: #E2E8F0;
  --border-hover: rgba(79, 70, 229, 0.3);

  /* Text */
  --text-dark: #0F172A;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --gradient-hero-bg: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 50%, #FDF2F8 100%);
  --gradient-science: linear-gradient(135deg, #4F46E5, #06B6D4);
  --gradient-commerce: linear-gradient(135deg, #F97316, #F59E0B);
  --gradient-arts: linear-gradient(135deg, #EC4899, #F472B6);
  --gradient-professional: linear-gradient(135deg, #10B981, #34D399);
  --gradient-competitive: linear-gradient(135deg, #3B82F6, #60A5FA);
  --gradient-technical: linear-gradient(135deg, #8B5CF6, #EC4899);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px var(--primary-glow);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.02), 0 8px 24px rgba(0,0,0,0.05);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out);
  --transition-normal: 0.45s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  transition: var(--transition-normal);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled .container {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0 var(--space-xl);
  box-shadow: none;
  max-width: 1240px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo .logo-img {
  height: 55px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition-fast);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition-normal);
  position: relative;
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   SECTION 1 — HERO (Gradient BG + Form)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--bg-white);
  overflow: hidden;
}

/* Floating animated background blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  animation: floatHeroGlow 14s ease-in-out infinite alternate;
}

.glow-primary {
  top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22) 0%, transparent 70%);
}

.glow-cyan {
  top: 30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
  animation-delay: -4s;
}

.glow-pink {
  bottom: -10%; left: 30%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes floatHeroGlow {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(40px, -30px) scale(1.08) rotate(90deg); }
  100% { transform: translate(-20px, 20px) scale(0.95) rotate(180deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-xs);
  animation: fadeInDown 0.8s var(--ease-out);
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-out);
}

.hero h1 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s 0.1s both var(--ease-out);
}

.hero p.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.75;
  animation: fadeInUp 0.8s 0.2s both var(--ease-out);
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  animation: fadeInUp 0.8s 0.3s both var(--ease-out);
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-item .stat-number span { color: var(--primary); }

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Form (Premium Glassmorphism) */
.hero-form-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl), 0 4px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(226, 232, 240, 0.8);
  animation: fadeInRight 0.8s 0.3s both var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-hero);
}

.hero-form-card .form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.hero-form-card .form-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hero-form-card .form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-form .form-group {
  margin-bottom: var(--space-md);
}

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

.hero-form .form-group input,
.hero-form .form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(248, 250, 252, 0.8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  outline: none;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  background: white;
}

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

.hero-form .btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
  margin-top: var(--space-sm);
}

.hero-form .btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.hero-form .form-footer {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-form .form-footer span {
  color: var(--accent-green);
  font-weight: 600;
}

/* ============================================
   SECTION 2 — HOW IT WORKS (Step Journey)
   ============================================ */
/* ============================================
   SECTION 2 — HOW IT WORKS (Step Journey)
   ============================================ */
.journey-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 650px; height: 650px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

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

.step-number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(79, 70, 229, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: var(--transition-normal);
}

.journey-step:hover .step-number {
  color: rgba(79, 70, 229, 0.12);
  transform: translateY(-5px) scale(1.05);
}

.step-connector {
  position: absolute;
  top: 60px;
  left: calc(50% + 50px);
  width: calc(100% - 100px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-light) 0px,
    var(--primary-light) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.35;
  z-index: 0;
  animation: lineSlide 20s linear infinite;
}

@keyframes lineSlide {
  from { background-position: 0 0; }
  to { background-position: 240px 0; }
}

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

.step-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  transition: var(--transition-normal);
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: var(--transition-normal);
}

.journey-step:hover .step-card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(79, 70, 229, 0.05);
  border-color: rgba(79, 70, 229, 0.2);
}

.journey-step:hover .step-card::before {
  opacity: 1;
}

.step-card .step-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
}

.journey-step:nth-child(2) .step-icon { background: #FFF7ED; }
.journey-step:nth-child(3) .step-icon { background: #ECFDF5; }
.journey-step:nth-child(4) .step-icon { background: #FDF2F8; }

.journey-step:hover .step-icon {
  transform: scale(1.15) rotate(-6deg);
  box-shadow: var(--shadow-md);
}

.step-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Footer & Drawer logo images */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-md);
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

.drawer-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   SECTION 3 — CATEGORIES (Soft colored BG)
   ============================================ */
.categories-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-section-gradient);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-xs);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.section-header h2 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.category-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(0, 0, 0, 0.03);
  border-color: rgba(226, 232, 240, 0.4);
}

.category-card .cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: var(--space-lg);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.category-card:hover .cat-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: var(--shadow-md);
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.category-card .cat-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.category-card .cat-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.category-card .cat-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.cat-tags .tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.category-card:hover .cat-tags .tag {
  border-color: var(--border-hover);
}

.cat-action {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.cat-action .arrow { transition: var(--transition-fast); }
.category-card:hover .cat-action .arrow { transform: translateX(5px); }

/* Card color variants */
.category-card.science::before { background: var(--gradient-science); }
.category-card.science .cat-icon { background: #EEF2FF; color: var(--primary); }
.category-card.science .cat-price { color: var(--primary); }
.category-card.science .cat-action { color: var(--primary); }

.category-card.commerce::before { background: var(--gradient-commerce); }
.category-card.commerce .cat-icon { background: #FFF7ED; color: var(--accent-orange); }
.category-card.commerce .cat-price { color: var(--accent-orange); }
.category-card.commerce .cat-action { color: var(--accent-orange); }

.category-card.arts::before { background: var(--gradient-arts); }
.category-card.arts .cat-icon { background: #FDF2F8; color: var(--accent-pink); }
.category-card.arts .cat-price { color: var(--accent-pink); }
.category-card.arts .cat-action { color: var(--accent-pink); }

/* ============================================
   SECTION 4 — COURSES (Clean white)
   ============================================ */
.courses-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
}

.courses-section .container {
  display: flex;
  flex-direction: column;
}

.course-tabs-wrapper {
  margin: 0 auto var(--space-3xl);
}

.course-tabs {
  background: var(--bg-soft);
  padding: 6px;
  border-radius: var(--radius-full);
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--border);
}

.course-tab {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: transparent;
  transition: var(--transition-fast);
}

.course-tab:hover {
  color: var(--primary);
}

.course-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.course-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
  animation: cardAppear 0.5s var(--ease-out) forwards;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(79, 70, 229, 0.15);
}

.course-card-thumb {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.course-card-thumb .thumb-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: var(--transition-normal);
}

.course-card:hover .course-card-thumb .thumb-gradient {
  transform: scale(1.08);
}

.course-card-thumb .course-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.course-card-body {
  padding: var(--space-lg);
  flex: 1;
}

.course-card-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.course-card-body .course-meta {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.course-card-footer .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-green);
}

.btn-enroll {
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--primary);
  color: white;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.btn-enroll:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
}

@keyframes cardAppear {
  to { opacity: 1; transform: translateY(0); }
}

.course-card:nth-child(1) { animation-delay: 0.05s; }
.course-card:nth-child(2) { animation-delay: 0.1s; }
.course-card:nth-child(3) { animation-delay: 0.15s; }
.course-card:nth-child(4) { animation-delay: 0.2s; }
.course-card:nth-child(5) { animation-delay: 0.25s; }
.course-card:nth-child(6) { animation-delay: 0.3s; }
.course-card:nth-child(7) { animation-delay: 0.35s; }
.course-card:nth-child(8) { animation-delay: 0.4s; }

/* ============================================
   SECTION 5 — ABOUT US (Creative & Dynamic)
   ============================================ */
.about-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Background glowing blur points */
.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.about-glow.glow-1 {
  top: 10%; right: 10%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2), transparent 70%);
}

.about-glow.glow-2 {
  bottom: 10%; left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  animation-delay: -4s;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -20px) scale(1.1); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

.about-lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.about-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.pillar-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.pillar-item:hover {
  background: white;
  border-color: var(--primary-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px; height: 44px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.pillar-item:hover .pillar-icon {
  background: var(--primary-50);
  border-color: var(--primary-light);
  transform: scale(1.1);
}

.pillar-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.pillar-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Visual Stacked Cards with 3D tilts */
.about-visual {
  perspective: 1200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-xl) 0;
}

.cards-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 400px;
  transform-style: preserve-3d;
  transition: var(--transition-slow);
}

.stack-card {
  position: absolute;
  width: 320px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  transform-style: preserve-3d;
}

.stack-card .card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.stack-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.stack-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Offsets for stacked effect with 3D tilts */
.mission-card {
  top: 0; left: 0;
  z-index: 2;
  border-top: 4px solid var(--primary);
  transform: rotateY(-10deg) rotateX(5deg) translateZ(20px);
}

.mission-card .card-icon {
  background: var(--primary-50);
}

.vision-card {
  bottom: 0; right: 0;
  z-index: 1;
  border-top: 4px solid var(--accent);
  transform: rotateY(-10deg) rotateX(5deg) translateZ(-20px);
}

.vision-card .card-icon {
  background: #ECFDF5;
}

/* Cards Stack hover effect */
.cards-stack:hover .mission-card {
  transform: translate3d(-20px, -20px, 40px) rotateY(-2deg) rotateX(2deg);
  box-shadow: var(--shadow-xl);
}

.cards-stack:hover .vision-card {
  transform: translate3d(20px, 20px, 10px) rotateY(-2deg) rotateX(2deg);
  box-shadow: var(--shadow-xl);
  z-index: 3;
}

/* ============================================
   SECTION 6 — WHY CHOOSE US (Creative Dot Canvas)
   ============================================ */
.features-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.dot-grid-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.features-section .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.feature-card .feat-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.feature-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

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

/* Hover Accent bar at bottom */
.card-accent-bar {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 4px;
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition-normal);
}

/* Card variants custom color stylings */
.feature-card.f-science .feat-icon { background: #EEF2FF; color: var(--primary); }
.feature-card.f-science .card-accent-bar { background: var(--gradient-science); }

.feature-card.f-commerce .feat-icon { background: #FFF7ED; color: var(--accent-orange); }
.feature-card.f-commerce .card-accent-bar { background: var(--gradient-commerce); }

.feature-card.f-arts .feat-icon { background: #FDF2F8; color: var(--accent-pink); }
.feature-card.f-arts .card-accent-bar { background: var(--gradient-arts); }

.feature-card.f-professional .feat-icon { background: #ECFDF5; color: var(--accent-green); }
.feature-card.f-professional .card-accent-bar { background: var(--gradient-professional); }

/* Hover animations */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 12px 30px rgba(0, 0, 0, 0.03);
  border-color: rgba(79, 70, 229, 0.1);
}

.feature-card:hover .feat-icon {
  transform: scale(1.15) rotate(-6deg);
  box-shadow: var(--shadow-md);
}

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

/* ============================================
   SECTION 7 — TESTIMONIALS (Grid Showcase)
   ============================================ */
.testimonials-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.testimonials-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials-sidebar h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.testimonials-sidebar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.rating-highlight {
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.rh-stars {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.rh-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.rh-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Creative 3D Testimonials Card Deck */
.testimonials-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
  overflow: hidden;
  position: relative;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: var(--space-3xl);
  align-items: center;
}

.testimonials-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rating-highlight {
  margin-top: var(--space-lg);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  max-width: 320px;
}

.rh-stars {
  color: var(--accent-gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.rh-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.rh-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Deck Structure */
.testimonials-deck-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.deck-container {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testi-deck {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.deck-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              z-index 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              border-color 0.3s ease;
  transform-origin: bottom center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: grab;
}

.deck-card::after {
  content: '"';
  position: absolute;
  right: var(--space-xl);
  bottom: 10px;
  font-size: 8rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(79, 70, 229, 0.03);
  line-height: 1;
  pointer-events: none;
}

/* Card States */
.deck-card.active {
  transform: translateX(-50%) translate3d(0, 0, 0) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  background: white;
  border-color: rgba(79, 70, 229, 0.15);
  box-shadow: var(--shadow-xl), 0 15px 40px rgba(79, 70, 229, 0.06);
}

.deck-card.next {
  transform: translateX(-50%) translate3d(25px, 15px, -100px) scale(0.95);
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
}

.deck-card.back {
  transform: translateX(-50%) translate3d(50px, 30px, -200px) scale(0.9);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/* Swipe Actions */
.deck-card.exit-right {
  transform: translateX(-50%) translate3d(120%, -20px, 50px) rotate(12deg);
  opacity: 0;
  z-index: 4;
}

.deck-card.enter-left {
  transform: translateX(-50%) translate3d(-120%, -20px, 50px) rotate(-12deg);
  opacity: 0;
  z-index: 4;
}

/* Card Subcomponents */
.t-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.science-tag { background: #EEF2FF; color: var(--primary); }
.professional-tag { background: #ECFDF5; color: var(--accent-green); }
.technical-tag { background: #FDF2F8; color: var(--accent-pink); }

.t-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.t-user {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: auto;
}

.t-user .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: white;
  box-shadow: var(--shadow-xs);
}

.av-science { background: var(--gradient-science); }
.av-professional { background: var(--gradient-professional); }
.av-technical { background: var(--gradient-technical); }

.t-meta {
  display: flex;
  flex-direction: column;
}

.t-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

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

/* Controls */
.deck-controls {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.deck-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.deck-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.2);
}

.deck-btn:active {
  transform: translateY(0);
}

/* ============================================
   SECTION 8 — CTA (Futuristic Glass Banner)
   ============================================ */
.cta-section {
  padding: var(--space-4xl) 0 var(--space-5xl);
  background: var(--bg-white);
}

.cta-glass-box {
  background: #0F172A; /* Slate 900 */
  border-radius: var(--radius-2xl);
  padding: var(--space-4xl) var(--space-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background animated gradient grid */
.cta-glass-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.25), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.2), transparent 50%);
  z-index: 1;
}

/* Floating interactive shapes inside CTA */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  animation: floatCTA 6s ease-in-out infinite alternate;
}

.cta-shape-1 {
  top: -10%; left: 10%;
  width: 150px; height: 150px;
  background: var(--primary-light);
}

.cta-shape-2 {
  bottom: -15%; right: 15%;
  width: 200px; height: 200px;
  background: var(--accent);
  animation-delay: -3s;
}

@keyframes floatCTA {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-15px) scale(1.1); }
}

/* Live Alert Badge */
.live-enroll-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.pulse-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreenAnim 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulseGreenAnim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.live-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.gradient-text-alt {
  background: linear-gradient(135deg, #818CF8 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(241, 245, 249, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,255,255,0.25);
  transition: var(--transition-fast);
}

.btn-white:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  font-size: 0.82rem;
  color: rgba(241, 245, 249, 0.6);
  flex-wrap: wrap;
}

/* ============================================
   FOOTER (Obsidian Dark Card)
   ============================================ */
.footer {
  background: #0B0F19; /* Obsidian black */
  padding: var(--space-4xl) 0 var(--space-2xl);
  color: #94A3B8;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  font-size: 0.85rem;
  color: #64748B;
  max-width: 320px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #94A3B8;
  transition: var(--transition-normal);
}

.footer-socials a:hover {
  border-color: var(--primary-light);
  color: white;
  background: rgba(79, 70, 229, 0.2);
  transform: translateY(-2px);
}

.footer-col h4,
.footer-newsletter h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; width: 100%; height: 1px;
  background: var(--primary-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Newsletter Column */
.footer-newsletter p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.25);
}

.newsletter-form input::placeholder {
  color: #475569;
}

.btn-news-submit {
  padding: 0 1.2rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.btn-news-submit:hover {
  background: var(--primary-dark);
}

.news-feedback {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 500;
}

.news-feedback.success { color: var(--accent-green); }
.news-feedback.error { color: var(--accent-warm); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ============================================
   PAYMENT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 480px;
  padding: var(--space-2xl);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: #FEE2E2;
  border-color: #FECACA;
  color: #EF4444;
}

.modal-course-info {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-course-info .mci-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.modal-course-info .mci-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-green);
}

.modal .form-group {
  margin-bottom: var(--space-lg);
}

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

.modal .form-group input,
.modal .form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  outline: none;
}

.modal .form-group input:focus,
.modal .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: white;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.payment-method {
  padding: var(--space-md);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.payment-method:hover { border-color: var(--primary-light); }

.payment-method.active {
  border-color: var(--primary);
  background: var(--primary-50);
  color: var(--primary);
}

.payment-method .pm-icon {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.btn-pay {
  width: 100%;
  padding: 0.85rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.3);
}

.btn-pay:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* --- Success Overlay --- */
.success-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-content {
  text-align: center;
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  animation: successBounce 0.6s var(--ease-out);
}

.success-check {
  width: 72px; height: 72px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.success-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.success-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@keyframes successBounce {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-grid { grid-template-columns: 1fr 380px; gap: var(--space-2xl); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  .navbar .container { max-width: 100%; padding: 0 var(--space-lg); }
  .navbar.scrolled .container { max-width: 100%; padding: 0.5rem var(--space-lg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 440px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero p.hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero h1 { font-size: 2.3rem; }
  .section-header h2 { font-size: 2rem; }
  .categories-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .cards-stack { margin: 0 auto; max-width: 340px; height: 380px; }
  .stack-card { width: 280px; padding: var(--space-lg); }
  .testimonials-layout { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .deck-card { max-width: 380px; min-height: 260px; padding: var(--space-lg); }
  .deck-card.next { transform: translateX(-50%) translate3d(15px, 10px, -80px) scale(0.96); }
  .deck-card.back { transform: translateX(-50%) translate3d(30px, 20px, -160px) scale(0.92); }
  .deck-container { height: 340px; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .cta-glass-box { padding: var(--space-2xl) var(--space-lg); }
  .cta-glass-box h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 90px 0 40px; }
  .courses-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cards-stack { height: 350px; }
  .stack-card { width: 240px; }
  .deck-card { max-width: 290px; min-height: 250px; padding: var(--space-md); }
  .deck-card.next { transform: translateX(-50%) translate3d(10px, 8px, -60px) scale(0.97); }
  .deck-card.back { transform: translateX(-50%) translate3d(20px, 16px, -120px) scale(0.94); }
  .deck-container { height: 330px; }
  .hero-stats { flex-direction: column; gap: var(--space-lg); align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ============================================
   MOBILE OFF-CANVAS DRAWER
   ============================================ */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9000;
  visibility: hidden;
  transition: visibility 0.4s;
  overflow: hidden;
}

.mobile-drawer.active {
  visibility: visible;
}

.drawer-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-drawer.active .drawer-overlay {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: 90%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-white);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: var(--space-xl);
  overflow-y: auto;
}


.mobile-drawer.active .drawer-panel {
  transform: translateX(0);
}

/* Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

.drawer-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

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

.drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-normal);
  background: var(--bg-light);
}

.drawer-close:hover {
  background: var(--primary-50);
  border-color: var(--primary-light);
  color: var(--primary);
  transform: rotate(90deg);
}

.drawer-close svg {
  width: 16px; height: 16px;
}

/* Body & Navigation Links */
.drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.drawer-link {
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-drawer.active .drawer-link {
  animation: drawerLinkAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.08s);
}

.drawer-link:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateX(8px);
}

.drawer-link .link-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-right: var(--space-lg);
}

.drawer-link .link-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  flex: 1;
  color: var(--text-dark);
}

.drawer-link .link-arrow {
  font-size: 1rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease-out);
}

.drawer-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Drawer Actions */
.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: auto;
}

.drawer-actions .btn {
  width: 100%;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
}

/* Footer & Social Media */
.drawer-footer {
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.drawer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.drawer-socials .social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.drawer-socials .social-icon:hover {
  transform: translateY(-4px);
  color: white;
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
}

/* Hover colors */
.drawer-socials .social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.drawer-socials .social-icon[aria-label="YouTube"]:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.drawer-socials .social-icon[aria-label="Twitter"]:hover {
  background: #000000;
  border-color: #000000;
}

.drawer-socials .social-icon[aria-label="LinkedIn"]:hover {
  background: #0077B5;
  border-color: #0077B5;
}

.drawer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

@keyframes drawerLinkAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll to Top progress circle */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.4s;
  z-index: 99;
}

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

.scroll-to-top:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl), 0 8px 30px rgba(79, 70, 229, 0.15);
}

.scroll-to-top svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: var(--bg-soft);
  stroke-width: 3px;
}

.progress-circle-bar {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3px;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-to-top .arrow {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s var(--ease-out);
  position: relative;
  z-index: 2;
}

.scroll-to-top:hover .arrow {
  transform: translateY(-3px);
}

/* ==========================================================================
   Victory Academy — Multi-Page Layouts & Elements (Added June 2026)
   ========================================================================== */

/* Active Link styling */
.nav-links a.active {
  color: var(--primary);
  font-weight: 700;
}
.nav-links a.active::after {
  width: 100%;
}

/* Home Hero Image Adjustments */
.hero-image-col {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s 0.2s both var(--ease-out);
}
.hero-img-layered {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
/* Adjust grid for hero if image is added */
@media (min-width: 1025px) {
  .hero-grid.with-image {
    grid-template-columns: 1.2fr 0.95fr 400px;
    gap: var(--space-xl);
  }
}
@media (max-width: 1024px) {
  .hero-grid.with-image {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* Category cards with background images */
.category-card.with-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
}
.category-card.with-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 0;
  transition: var(--transition-normal);
}
.category-card.with-img:hover::after {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.9) 100%);
}
.category-card.with-img > * {
  position: relative;
  z-index: 1;
}
.category-card.with-img h3 {
  color: white;
  margin-top: var(--space-sm);
}
.category-card.with-img .cat-desc {
  color: rgba(255, 255, 255, 0.85);
}
.category-card.with-img .cat-price {
  color: white !important;
}

/* Partners & Affiliations logo strip */
.partners-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.partners-section h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4xl);
  flex-wrap: wrap;
  opacity: 0.75;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.partner-logo span {
  color: var(--primary);
}

/* Campus Life Gallery */
.gallery-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: var(--space-lg);
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-overlay h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.gallery-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 220px;
  }
}

/* Subpage Heroes */
.subpage-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--gradient-hero-bg);
  overflow: hidden;
}
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
}
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}
.subpage-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
}
.subpage-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}
@media (max-width: 1024px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .subpage-hero p {
    margin: 0 auto;
  }
  .subpage-hero-img {
    max-width: 480px;
    margin: var(--space-xl) auto 0;
  }
}

/* Team Grid Section */
.team-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(79, 70, 229, 0.15);
}
.team-card-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.team-card:hover .team-card-image img {
  transform: scale(1.05);
}
.team-card-info {
  padding: var(--space-lg);
}
.team-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.team-card-info p {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.team-card-bio {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Course Comparison Table */
.comparison-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}
.table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-2xl);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}
.comparison-table th, 
.comparison-table td {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-soft);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dark);
}
.comparison-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.comparison-table tr:hover td {
  background: var(--primary-50);
}
.comparison-table td .check-icon {
  color: var(--accent-green);
  font-weight: bold;
}
.comparison-table td .cross-icon {
  color: var(--accent-warm);
  font-weight: bold;
}

/* FAQ Accordion Section */
.faq-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
}
.faq-accordion {
  max-width: 750px;
  margin: var(--space-2xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
  transition: var(--transition-normal);
}
.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition-fast);
}
.faq-question:hover {
  background: var(--bg-light);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 var(--space-xl);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 var(--space-xl) var(--space-lg);
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

/* Contact Grid & Map Container */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  margin-top: var(--space-3xl);
  align-items: start;
}
.contact-form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: var(--shadow-xl);
}
.contact-form-container h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}
.contact-form-container p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
}
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.contact-form .form-group {
  margin-bottom: var(--space-lg);
}
.contact-form .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(248, 250, 252, 0.8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-fast);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  background: white;
}
.contact-form textarea {
  height: 120px;
  resize: vertical;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.info-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.info-card-icon {
  width: 44px; height: 44px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.info-card-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.info-card-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.map-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}
.map-container {
  height: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .contact-form .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Featured Courses Showcase */
.featured-courses-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}
.featured-card {
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.15);
}
.featured-badge {
  align-self: flex-start;
  background: var(--accent-gold);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.featured-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}
.featured-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.featured-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.featured-features li {
  font-size: 0.82rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.featured-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
}
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Victory Academy — Course Details Page Layout (Added June 2026)
   ========================================================================== */
.details-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  align-items: start;
}

.details-content-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.details-content-card h2 {
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.curriculum-module {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.module-header {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-dark);
  cursor: pointer;
  background: white;
  transition: var(--transition-fast);
}

.module-header:hover {
  background: var(--bg-soft);
}

.module-body {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s var(--ease-out), padding 0.4s ease;
}

.curriculum-module.active .module-body {
  max-height: 300px;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.module-body ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.module-body li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.module-body li::before {
  content: '⚡';
  color: var(--primary);
  font-size: 0.8rem;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  border-top: 4px solid var(--primary);
}

.sidebar-card .price-tag {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: baseline;
}

.sidebar-card .price-tag small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.sidebar-feat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.88rem;
  color: var(--text-primary);
}

.sidebar-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.details-badge-row {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.details-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  color: white;
}

@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-card {
    position: static;
    margin-top: var(--space-xl);
  }
}

/* ==========================================================================
   CREATIVE HOME PAGE SECTIONS CSS
   ========================================================================== */

/* ====== SECTION BADGE ====== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 0.9rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ====== 1. ANIMATED MARQUEE STATS TICKER ====== */
.marquee-section {
  background: var(--bg-section-dark);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-track {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}

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

.mq-item {
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mq-item strong {
  font-weight: 800;
  color: var(--accent);
}

.mq-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.2rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ====== 2. DYNAMIC COURSE SHOWCASE (DB) ====== */
.showcase-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-light);
  position: relative;
}

.showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.showcase-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.showcase-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.showcase-filters {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.sf-pill {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-xs);
}

.sf-pill:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-1px);
}

.sf-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.sc-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-hover);
}

.sc-banner {
  height: 120px;
  padding: var(--space-lg);
  position: relative;
  display: flex;
  align-items: flex-end;
  color: white;
}

.sc-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sc-badge-cat {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(5px);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sc-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.sc-sub {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.sc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border);
  padding-top: var(--space-md);
  margin-top: auto;
}

.sc-price-chip {
  background: var(--bg-soft);
  color: var(--text-primary);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
}

.sc-price-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.sc-footer {
  padding: 0 var(--space-lg) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.65rem;
}

.sc-btn-detail {
  background: var(--bg-soft);
  color: var(--text-primary);
  text-align: center;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.sc-btn-detail:hover {
  background: var(--bg-muted);
  color: var(--text-dark);
}

.sc-btn-enroll {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.sc-btn-enroll:hover {
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  filter: brightness(1.08);
}

/* Showcase CTA */
.showcase-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.showcase-cta-note {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

/* Skeleton Loading */
.sk-card {
  height: 380px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

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

/* ====== 3. WHY CHOOSE US (Bento Grid) ====== */
.bento-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.bento-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-3xl);
}

.bento-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.bento-card {
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-sm);
  z-index: 2;
}

.bento-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  z-index: 2;
}

.bento-icon {
  font-size: 2rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

/* Card sizes */
.bento-big {
  grid-column: span 2;
  grid-row: span 2;
  padding: var(--space-2xl);
}

.bento-big h3 {
  font-size: 1.6rem;
  margin-top: var(--space-xl);
}

.bento-big p {
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xl);
}

.bento-wide .bento-icon {
  flex-shrink: 0;
}

/* Bento Themes */
.bento-indigo {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: #312e81;
}
.bento-indigo h3 { color: #1e1b4b; }
.bento-indigo p { color: #4338ca; }
.bento-indigo .bento-icon { background: #ddd6fe; }

.bento-teal {
  background: #f0fdfa;
  border-color: #ccfbf1;
  color: #115e59;
}
.bento-teal h3 { color: #134e4a; }
.bento-teal p { color: #0f766e; }
.bento-teal .bento-icon { background: #ccfbf1; }

.bento-purple {
  background: #faf5ff;
  border-color: #f3e8ff;
  color: #581c87;
}
.bento-purple h3 { color: #3b0764; }
.bento-purple p { color: #6b21a8; }
.bento-purple .bento-icon { background: #f3e8ff; }

.bento-green {
  background: #f0fdf4;
  border-color: #dcfce7;
  color: #166534;
}
.bento-green h3 { color: #14532d; }
.bento-green p { color: #15803d; }
.bento-green .bento-icon { background: #dcfce7; }

.bento-orange {
  background: #fff7ed;
  border-color: #ffedd5;
  color: #9a3412;
}
.bento-orange h3 { color: #7c2d12; }
.bento-orange p { color: #c2410c; }
.bento-orange .bento-icon { background: #ffedd5; }

.bento-rose {
  background: #fff1f2;
  border-color: #ffe4e6;
  color: #9f1239;
}
.bento-rose h3 { color: #881337; }
.bento-rose p { color: #be123c; }
.bento-rose .bento-icon { background: #ffe4e6; }

.bento-dark {
  background: var(--bg-section-dark);
  border-color: #1e293b;
  color: white;
  grid-column: span 3;
}

/* Bento details */
.bento-tag {
  background: var(--primary);
  color: white;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  z-index: 2;
}

.bento-bg-shape {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  filter: blur(20px);
  z-index: 1;
}

.bento-link {
  color: #166534;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.88rem;
}
.bento-link:hover {
  text-decoration: underline;
}

/* Bento Stats Row */
.bento-stats-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  padding: 0.5rem 0;
}

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

.bento-stat-n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-stat-l {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.bento-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ====== 4. SUCCESS WALL (Testimonials) ====== */
.wall-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-section-alt);
}

.wall-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.wall-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.wall-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.wall-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.wall-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.wc-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.wc-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-style: italic;
  flex: 1;
}

.wc-foot {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: auto;
  border-top: 1px solid var(--bg-soft);
  padding-top: var(--space-md);
}

.wc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-50);
}

.wc-avatar-lg {
  width: 54px;
  height: 54px;
}

.wc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.wc-role {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.wc-badge {
  margin-left: auto;
  font-size: 0.68rem;
  background: var(--primary-50);
  color: var(--primary);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
}

.wc-badge-tech {
  background: #f3e8ff;
  color: #7c3aed;
}

.wc-badge-comp {
  background: #ecfdf5;
  color: #059669;
}

/* Feature Tall Card */
.wc-tall {
  grid-row: span 2;
  justify-content: space-between;
}

.wc-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
}

.wc-gradient .wc-quote {
  color: rgba(255, 255, 255, 0.9);
}

.wc-gradient .wc-name {
  color: white;
}

.wc-gradient .wc-role {
  color: rgba(255, 255, 255, 0.7);
}

.wc-quote-big {
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
}

.wall-big-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 15px;
  right: 25px;
  font-weight: 900;
}

.wc-stars-bottom {
  margin-top: var(--space-lg);
  margin-bottom: 0;
  color: #FBBF24;
}

/* Wall Summary Bar */
.wall-summary {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-2xl);
  box-shadow: var(--shadow-sm);
  justify-content: space-between;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.ws-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.ws-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.ws-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

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

.ws-platforms {
  display: flex;
  gap: var(--space-xl);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ====== 5. INTERACTIVE TIMELINE ====== */
.timeline-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
}

.timeline-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-3xl);
}

.timeline-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.tl-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tl-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bg-soft);
  line-height: 1;
  transition: all 0.3s;
}

.tl-step:hover .tl-num {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.tl-line {
  height: 4px;
  background: var(--bg-soft);
  margin: var(--space-sm) 0 var(--space-lg);
  border-radius: var(--radius-full);
  position: relative;
}

.tl-step:not(:last-child) .tl-line::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 4px;
  background: var(--bg-soft);
  z-index: 2;
}

.tl-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-out);
}

.tl-step:hover .tl-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.tl-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.tl-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.tl-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tl-highlight {
  margin-top: auto;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  align-self: flex-start;
  text-transform: uppercase;
}

/* ====== 6. CTA (Futuristic Glass Banner) ====== */
.cta-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.cta-glass-box {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.cta-shape-1 {
  width: 250px;
  height: 250px;
  background: rgba(79, 70, 229, 0.3);
  top: -80px;
  left: -80px;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.25);
  bottom: -100px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.btn-white {
  background: white;
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
  transform: translateY(-2px);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Live Enroll Badge */
.live-enroll-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.pulse-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreenAnim 2s infinite;
}

.live-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}

@keyframes pulseGreenAnim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ====== 7. PARTNERS STRIP ====== */
.partners-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  text-align: center;
}

.partners-section h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xl);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.25s;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--text-dark);
}

/* ====== RESPONSIVE LAYOUT ====== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-dark {
    grid-column: span 2;
  }
  .wall-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wc-tall {
    grid-row: span 1;
  }
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  .tl-step:not(:last-child) .tl-line::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-big, .bento-wide, .bento-dark {
    grid-column: span 1;
  }
  .bento-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  .wall-grid {
    grid-template-columns: 1fr;
  }
  .wall-summary {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }
  .ws-divider {
    width: 80%;
    height: 1px;
    margin: 10px 0;
  }
  .ws-platforms {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .cta-trust {
    flex-direction: column;
    gap: var(--space-xs);
  }
}


