/* ============================================================
   ToppersSky Class 10 Complete Board Course Landing Page
   Modern Premium EdTech Design - 2026
   ============================================================ */

/* ============================================================
   CSS VARIABLES & ROOT SETTINGS
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary: #1565c0;
  --color-primary-light: #1976d2;
  --color-primary-dark: #0d47a1;
  --color-accent: #ff6f00;
  --color-accent-light: #ff8f00;
  --color-accent-dark: #e65100;
  --color-primary-darkblue: #012170;
  
  /* Background Colors */
  --color-bg: #f8faff;
  --color-bg-light: #ffffff;
  --color-bg-dark: #0a1929;
  --color-bg-section: #f0f4ff;
  
  /* Text Colors */
  --color-text: #1a2332;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  
  /* UI Colors */
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.25);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.35);
}

.btn--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(255, 111, 0, 0.3);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn--ghost {
  background: rgba(21, 101, 192, 0.1);
  color: var(--color-primary);
}

.btn--ghost:hover {
  background: rgba(21, 101, 192, 0.2);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 18px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--primary {
  background: rgba(21, 101, 192, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(21, 101, 192, 0.2);
}

.badge--accent {
  background: rgba(255, 111, 0, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(255, 111, 0, 0.2);
}

.badge--success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.announcement-bar__text {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.announcement-bar__text strong {
  color: #FFC107;
  font-weight: 800;
}

.announcement-bar__cta {
  padding: 6px 16px;
  background: white;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.announcement-bar__cta:hover {
  background: var(--color-accent);
  color: white;
  transform: scale(1.05);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  background: white;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}

.header__logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 40px;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 1;
  min-width: 0;
}

/* ── Custom board dropdown (HBS) ─────────────────────────────────────────── */
.hbs {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
}

/* Trigger button */
.hbs__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  height: 34px;
  padding: 0 10px 0 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.hbs__trigger:hover {
  border-color: #94a3b8;
  background: #f1f5f9;
}
.hbs--open .hbs__trigger {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.13);
}
.hbs__arrow {
  font-size: 10px;
  color: #64748b;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.hbs--open .hbs__arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.hbs__menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 0;
  width: max-content;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.11), 0 1px 4px rgba(15,23,42,0.06);
  padding: 3px;
  z-index: 1000;
  list-style: none;
  margin: 0;
}
.hbs--open .hbs__menu {
  display: block;
  animation: hbsFadeIn 0.13s ease;
}
@keyframes hbsFadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Each option row */
.hbs__option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.hbs__option:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.hbs__option--selected {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}
.hbs__option--selected:hover {
  background: #dbeafe;
}

/* Check icon / placeholder spacer */
.hbs__check {
  font-size: 10px;
  color: #2563eb;
  width: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile full-width variant */
.hbs--mobile {
  width: 100%;
}
.hbs--mobile .hbs__trigger {
  width: 100%;
  border-radius: 10px;
  justify-content: space-between;
  height: 40px;
  font-size: 14px;
}
.hbs--mobile .hbs__menu {
  width: 100%;
  min-width: unset;
  left: 0;
  right: 0;
}

/* ── Header Grade Toggle Buttons ─────────────────────────────────────────── */
.header-grade-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 3px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.header-grade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  min-width: 30px;
  padding: 0 8px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.header-grade-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.header-grade-btn.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Mobile grade toggle — wider buttons */
.mobile-menu .header-grade-toggle {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 4px;
}

.mobile-menu .header-grade-btn {
  flex: 1;
  height: 36px;
  font-size: 14px;
  border-radius: 10px;
}

.header__nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  position: relative;
  white-space: nowrap;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s;
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__signin {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.header__signin:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 2000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.mobile-menu__close button {
  background: none;
  font-size: 28px;
  color: var(--color-text);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:hover {
  color: var(--color-primary);
}

/* ============================================================
   HERO SECTION - DARK THEME
   ============================================================ */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-darkblue) 0%, var(--color-primary-dark) 40%, #1a3a8f 70%, #0e2a70 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(255 255 255 / 15%) 1.5px, #00000014 1.5px), linear-gradient(90deg, rgb(255 255 255 / 19%) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: .3;
    animation: au-bgMove 20s ease infinite;
}
@keyframes au-bgMove {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}   

/* Animated Background Elements */
.hero__bg-animated {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(21, 101, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 101, 192, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero__gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.4), transparent);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero__gradient-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.3), transparent);
  bottom: -150px;
  left: -100px;
  animation-delay: 5s;
}

.hero__gradient-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Glowing Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(21, 101, 192, 0.15);
  border: 1px solid rgba(21, 101, 192, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(21, 101, 192, 0.3);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #10b981;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__badge-glow {
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.2), rgba(255, 111, 0, 0.1));
  border-radius: var(--radius-full);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.6;
}

/* Enhanced Title */
.hero__title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__title-highlight {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.4em;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero__title-main {
  color: white;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  letter-spacing: -1px;
}

.hero__title-subtitle {
  font-size: 0.45em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
}

/* Enhanced Pricing Card */
.hero__pricing-card {
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero__pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, #ff6f00, transparent);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero__offer-badge {
  position: absolute;
  top: 0px;
  right:0px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff6f00, #f59e0b);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255, 111, 0, 0.5);
  z-index: 10;
}

.hero__offer-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px white;
}

.hero__pricing-content {
  padding: 32px;
}

.hero__pricing-header {
  margin-bottom: 24px;
}

.hero__course-info {
  margin-bottom: 20px;
}

.hero__course-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero__course-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__meta-dot {
  color: rgba(255, 255, 255, 0.3);
}

.hero__pricing-display {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.hero__price-container {
  flex: 1;
}

.hero__price-old {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.hero__price-main-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero__price-new {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6f00, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.hero__price-period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero__discount-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__discount-text {
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff6f00, #f59e0b);
  color: white;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.4);
  margin-bottom: 8px;
}

.hero__discount-amount {
  font-size: 13px;
  color: #10b981;
  font-weight: 700;
}

.hero__feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.hero__feature-item i {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

/* Enhanced CTAs */
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.btn--hero-primary {
  flex: 1;
  padding: 18px 32px;
  background: linear-gradient(135deg, #ff6f00, #f59e0b);
  color: white;
  font-size: 18px;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  position: relative;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 111, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 111, 0, 0.5);
}

.btn--hero-primary .btn__text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--hero-primary .btn__glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.4), rgba(245, 158, 11, 0.4));
  border-radius: var(--radius-md);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.btn--hero-primary:hover .btn__glow {
  opacity: 1;
}

.btn--hero-secondary {
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn--hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero__trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero__trust-item i {
  color: #10b981;
  font-size: 14px;
}

/* Right Visual Section */
.hero__visual {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D Phone Mockup */
.hero__phone-wrapper {
  position: relative;
  z-index: 5;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero__phone {
  width: 300px;
  height: 660px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 42px;
  padding: 10px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(-5deg);
}

.hero__phone::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(255, 111, 0, 0.1));
  border-radius: 50px;
  filter: blur(30px);
  z-index: -1;
  opacity: 0.6;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: url('../images//hero-screen.jpg') center/100% 100% no-repeat;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.hero__phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #0a0e1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__phone-content {
  padding: 36px 16px 16px;
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(180deg, #0f172a 0%, #1a2332 100%);
}

.hero__phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}

.hero__phone-logo {
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.hero__phone-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.hero__phone-banner {
  background: linear-gradient(135deg, #1565c0, #ff6f00);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.3);
}

.hero__banner-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.hero__banner-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__phone-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hero__phone-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.hero__card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero__card-label {
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.hero__phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Enhanced Floating Cards */
.hero__floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__float-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: float 4s ease-in-out infinite;
  pointer-events: auto;
  transition: var(--transition);
}

.hero__float-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hero__float-card--1 {
  top: 60px;
  left: -70px;
  animation-delay: 0s;
}

.hero__float-card--2 {
  top: 180px;
  right: -90px;
  animation-delay: 0.5s;
}

.hero__float-card--3 {
  bottom: 140px;
  left: -50px;
  animation-delay: 1s;
}

.hero__float-card--4 {
  bottom: 200px;
  right: -80px;
  animation-delay: 1.5s;
}

.hero__fc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
}

.hero__fc-icon--blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero__fc-icon--orange {
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 111, 0, 0.1));
  border: 1px solid rgba(255, 111, 0, 0.3);
}

.hero__fc-icon--green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero__fc-icon--yellow {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero__fc-text p {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom:0px;
}

.hero__fc-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero__fc-glow {
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-lg);
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero__float-card--1 .hero__fc-glow {
  background: rgba(59, 130, 246, 0.3);
}

.hero__float-card--2 .hero__fc-glow {
  background: rgba(255, 111, 0, 0.3);
}

.hero__float-card--3 .hero__fc-glow {
  background: rgba(16, 185, 129, 0.3);
}

.hero__float-card--4 .hero__fc-glow {
  background: rgba(245, 158, 11, 0.3);
}

.hero__float-card:hover .hero__fc-glow {
  opacity: 1;
}

/* Decorative Elements */
.hero__decorative {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__dec-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  animation: circleFloat 10s ease-in-out infinite;
}

.hero__dec-circle--1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero__dec-circle--2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 10%;
  border-color: rgba(255, 111, 0, 0.2);
  animation-delay: 2s;
}

.hero__dec-circle--3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 5%;
  border-color: rgba(16, 185, 129, 0.2);
  animation-delay: 4s;
}

@keyframes circleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.5; }
}

/* ============================================================
   CORE VALUE SECTION
   ============================================================ */
.core-value {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.core-value .section-subtitle{margin:auto}
.core-value::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.core-value::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.core-value__header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.core-value__label-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
  margin-bottom: 16px;
}

.core-value__label-wrapper i {
  color: var(--color-primary);
  font-size: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.journey-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Background Elements */
.journey-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.journey-bg__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.journey-bg__circle--1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  top: -100px;
  left: -100px;
}

.journey-bg__circle--2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #6a1b9a, #ab47bc);
  top: 50%;
  right: -80px;
  animation-delay: -5s;
}

.journey-bg__circle--3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  bottom: -80px;
  left: 30%;
  animation-delay: -10s;
}

/* Journey Grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

/* Journey Box */
.journey-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-box__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.journey-box__glow--blue {
  background: radial-gradient(circle at top left, rgba(21, 101, 192, 0.15), transparent 70%);
}

.journey-box__glow--purple {
  background: radial-gradient(circle at top left, rgba(106, 27, 154, 0.15), transparent 70%);
}

.journey-box__glow--green {
  background: radial-gradient(circle at top left, rgba(46, 125, 50, 0.15), transparent 70%);
}

.journey-box__glow--orange {
  background: radial-gradient(circle at top left, rgba(255, 111, 0, 0.15), transparent 70%);
}

.journey-box:hover .journey-box__glow {
  opacity: 1;
}

.journey-box__inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.journey-box:hover .journey-box__inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(21, 101, 192, 0.3);
}

.journey-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.journey-box__icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  position: relative;
  transition: all 0.4s ease;
}

.journey-box:hover .journey-box__icon-bg {
  transform: scale(1.1) rotate(-5deg);
}

.journey-box__icon-bg--blue {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.25);
}

.journey-box__icon-bg--purple {
  background: linear-gradient(135deg, #6a1b9a, #ab47bc);
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.25);
}

.journey-box__icon-bg--green {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25);
}

.journey-box__icon-bg--orange {
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  box-shadow: 0 8px 24px rgba(255, 111, 0, 0.25);
}

.journey-box__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.journey-box__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.journey-box__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.journey-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journey-box__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.journey-box__list i {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-success), #66bb6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
}

/* Journey CTA */
.journey-cta {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.3);
  position: relative;
  overflow: hidden;
}

.journey-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.journey-cta__icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.journey-cta__content {
  flex: 1;
}

.journey-cta__title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.journey-cta__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.journey-cta__btn {
  background: white;
  color: var(--color-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.journey-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  gap: 14px;
}

.journey-cta__btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* ============================================================
   WHAT'S INCLUDED SECTION
   ============================================================ */
.whats-included {
  background: white;
  padding: 100px 0;
}

.whats-included__header {
  text-align: center;
  margin-bottom: 60px;
}
.whats-included  .section-subtitle{margin:auto}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  background: white;
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.feature-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.feature-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  text-align: left;
  padding: 40px;
  background: linear-gradient(135deg, rgba(21,101,192,0.05), rgba(255,111,0,0.03));
  border: 2px solid var(--color-primary);
}

.feature-card--featured .feature-card__icon {
  width: 96px;
  height: 96px;
  font-size: 48px;
  margin: 0;
}

/* ============================================================
   SUBJECTS SECTION
   ============================================================ */
/* ============================================================
   SUBJECTS SECTION - MODERN LIGHT THEME
   ============================================================ */
.subjects {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.subjects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(21,101,192,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,111,0,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.subjects__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.subjects__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(255,111,0,0.08));
  color: var(--color-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 2px solid rgba(21,101,192,0.15);
}

.subjects__label i {
  font-size: 16px;
}

.subjects__title {
  font-size: 44px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.subjects__title-accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subjects__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Subjects Container */
.subjects-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Subject Card - Horizontal Layout */
.subject-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.subject-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subject-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.subject-card:hover::before {
  opacity: 1;
}

/* Subject Color Themes */
.subject-card[data-subject="math"] .subject-card__icon-box {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}

.subject-card[data-subject="math"]::before {
  background: linear-gradient(180deg, #1565c0, #1e88e5);
}

.subject-card[data-subject="science"] .subject-card__icon-box {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.subject-card[data-subject="science"]::before {
  background: linear-gradient(180deg, #2e7d32, #43a047);
}

.subject-card[data-subject="social"] .subject-card__icon-box {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.subject-card[data-subject="social"]::before {
  background: linear-gradient(180deg, #e65100, #f57c00);
}

.subject-card[data-subject="english"] .subject-card__icon-box {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #6a1b9a;
}

.subject-card[data-subject="english"]::before {
  background: linear-gradient(180deg, #6a1b9a, #8e24aa);
}

.subject-card[data-subject="hindi"] .subject-card__icon-box {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  color: #c2185b;
}

.subject-card[data-subject="hindi"]::before {
  background: linear-gradient(180deg, #c2185b, #d81b60);
}

/* Left Section */
.subject-card__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  width: 280px;
}

.subject-card__icon-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.subject-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.subject-card:hover .subject-card__icon-box {
  transform: scale(1.1) rotate(-5deg);
}

.subject-card__info {
  flex: 1;
}

.subject-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,111,0,0.15), rgba(255,111,0,0.08));
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,111,0,0.2);
}

.subject-card__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.subject-card__description {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Right Section */
.subject-card__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Stats Grid */
.subject-card__stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
}

.subject-stat {
  text-align: center;
  padding: 10px 6px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  min-width: 0;
  flex: 1;
}

.subject-stat__number {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.subject-stat__label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Features */
.subject-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subject-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(21,101,192,0.06);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid rgba(21,101,192,0.1);
}

.subject-feature i {
  font-size: 12px;
  color: var(--color-success);
}

/* CTA Button */
.subject-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--color-primary), #1e88e5);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(21,101,192,0.25);
}

.subject-card__btn:hover {
  background: linear-gradient(135deg, #1e88e5, var(--color-primary));
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(21,101,192,0.35);
}

.subject-card__btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.subject-card__btn:hover i {
  transform: translateX(4px);
}

/* ============================================================
   SUBJECT CARD — ACTION ROW (price + buy button)
   ============================================================ */
.subject-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.subject-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.subject-card__price-sale {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary, #1565c0);
  line-height: 1;
}

.subject-card__price-mrp {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted, #94a3b8);
  text-decoration: line-through;
}

.subject-card__price-save {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.subject-card__form {
  margin: 0;
}

/* ============================================================
   SUBJECTS COMBO CTA BANNER
   ============================================================ */
.subjects-combo-cta {
  margin-top: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 50%, #1a237e 100%);
  padding: 28px 36px;
  box-shadow: 0 12px 40px rgba(21,101,192,0.30);
  position: relative;
  overflow: hidden;
}

.subjects-combo-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.subjects-combo-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.subjects-combo-cta__content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.subjects-combo-cta__icon {
  font-size: 40px;
  flex-shrink: 0;
}

.subjects-combo-cta__text {
  min-width: 0;
}

.subjects-combo-cta__title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.subjects-combo-cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}

.subjects-combo-cta__buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.subjects-combo-cta__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.subjects-combo-cta__price {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.subjects-combo-cta__mrp {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  font-weight: 500;
}

.subjects-combo-cta__save {
  background: #fde68a;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.subjects-combo-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: #1565c0;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.subjects-combo-cta__btn:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

.subjects-combo-cta__btn i {
  color: #f59e0b;
}

/* ============================================================
   AI DOUBT SOLVER SECTION
   ============================================================ */
.ai-section {
  background: linear-gradient(135deg, var(--color-bg-dark), #0f1e4d);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 800px at 50% 50%, rgba(21,101,192,0.15), transparent);
}

.ai-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ai-section__content h2 {
  color: white;
  margin-bottom: 24px;
}

.ai-section__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.ai-benefits {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.ai-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.ai-benefit:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(8px);
}

.ai-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,111,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.ai-benefit__text h4 {
  color: white;
  font-size: 17px;
  margin-bottom: 6px;
}

.ai-benefit__text p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.ai-section__visual {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-2xl);
}

.ai-chat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-chat__message {
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  max-width: 85%;
  font-size: 15px;
  line-height: 1.6;
}

.ai-chat__message--user {
  background: var(--color-bg);
  margin-left: auto;
  border: 1px solid var(--color-border);
}

.ai-chat__message--ai {
  background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(255,111,0,0.05));
  border: 1px solid rgba(21,101,192,0.15);
}

/* ============================================================
   ANIMATED LEARNING SECTION
   ============================================================ */
.animated-learning {
  background: white;
  padding: 100px 0;
}

.animated-learning__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.animated-learning__visual {
  position: relative;
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}

.animated-learning__content h2 {
  margin-bottom: 24px;
}

.learning-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin:20px 0;
}

.learning-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.learning-benefit:hover {
  border-color: var(--color-primary);
  transform: translateX(8px);
}

.learning-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.learning-benefit__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================================
   PRACTICE SECTION
   ============================================================ */
/* ============================================================
   PRACTICE SECTION - MODERN DESIGN
   ============================================================ */
.practice-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.practice-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,0.06), transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
}

.practice-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76,175,80,0.06), transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
}

.practice-section__header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.practice-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,111,0,0.12), rgba(21,101,192,0.08));
  color: var(--color-accent);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 2px solid rgba(255,111,0,0.2);
}

.practice-label i {
  font-size: 16px;
}

.practice-title {
  font-size: 46px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.practice-title-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.practice-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Practice Content Layout */
.practice-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Left Visual Cards */
.practice-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.practice-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 2px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-card--primary::before {
  background: linear-gradient(90deg, var(--color-primary), #1e88e5);
}

.practice-card--secondary::before {
  background: linear-gradient(90deg, var(--color-success), #43a047);
}

.practice-card--accent::before {
  background: linear-gradient(90deg, var(--color-accent), #ff8f00);
}

.practice-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.practice-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.practice-card:hover .practice-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.practice-card__icon--small {
  width: 48px;
  height: 48px;
  font-size: 22px;
  margin-bottom: 16px;
}

.practice-card__badge {
  background: linear-gradient(135deg, rgba(255,111,0,0.15), rgba(255,111,0,0.08));
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,111,0,0.2);
}

.practice-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.practice-card__title-small {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0;
}

.practice-card__stat {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.practice-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.practice-card__progress {
  position: relative;
}

.practice-card__progress-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
  border-radius: 10px;
  transition: width 1s ease;
  position: relative;
}

.practice-card__progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.practice-card__progress-text {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

.practice-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Right Features List */
.practice-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.practice-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.practice-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.practice-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.practice-feature:hover .practice-feature__icon {
  transform: scale(1.1) rotate(-8deg);
}

.practice-feature__icon--blue {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}

.practice-feature__icon--green {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.practice-feature__icon--purple {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #6a1b9a;
}

.practice-feature__content {
  flex: 1;
}

.practice-feature__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.practice-feature__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.practice-feature__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.practice-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(21,101,192,0.08);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
}

.practice-tag i {
  font-size: 10px;
}

/* CTA Section */
.practice-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.practice-cta-btn {
  box-shadow: 0 8px 24px rgba(21,101,192,0.25);
  margin-bottom: 16px;
}

.practice-cta-btn:hover {
  box-shadow: 0 12px 32px rgba(21,101,192,0.35);
}

.practice-cta-note {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.practice-cta-note i {
  color: var(--color-success);
  font-size: 16px;
}

/* ============================================================
   MONTHLY QUIZ SECTION
   ============================================================ */
.quiz-section {
  background: linear-gradient(135deg, #fff5e6, #ffe5cc);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quiz-section::before {
  content: '🏆';
  position: absolute;
  font-size: 300px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.quiz-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.quiz-section__content h2 {
  margin-bottom: 24px;
}

.quiz-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.quiz-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.quiz-feature__icon {
  font-size: 24px;
}

.quiz-feature__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.leaderboard {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.leaderboard__header {
  text-align: center;
  margin-bottom: 24px;
}

.leaderboard__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.leaderboard__subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
}

.leaderboard__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leaderboard__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.leaderboard__item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.leaderboard__rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leaderboard__item:nth-child(1) .leaderboard__rank {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.leaderboard__info {
  flex: 1;
}

.leaderboard__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.leaderboard__meta {
  font-size: 13px;
  color: var(--color-text-muted);
}

.leaderboard__score {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
}

/* ============================================================
   WHY STUDENTS LOVE
   ============================================================ */
/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--color-bg-section);
  padding: 100px 0;
}
.how-it-works, .section-subtitle {margin:auto}

.how-it-works__header {
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-step__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.process-step__number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,111,0,0.3);
}

.process-step__icon {
  font-size: 48px;
}

.process-step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.process-step__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
/* ============================================================
   TRUST SECTION - MODERN REDESIGN
   ============================================================ */
.trust-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,0.05), transparent 70%);
  top: -200px;
  left: -200px;
  border-radius: 50%;
}

.trust-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.05), transparent 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
}

.trust-section__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.trust-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(21,101,192,0.12), rgba(76,175,80,0.08));
  color: var(--color-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 2px solid rgba(21,101,192,0.15);
}

.trust-section__label i {
  font-size: 16px;
}

.trust-section__title {
  font-size: 44px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.trust-title-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Trust Cards */
.trust-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 2px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.trust-card--students::before {
  background: linear-gradient(90deg, #1565c0, #1e88e5, #42a5f5);
}

.trust-card--parents::before {
  background: linear-gradient(90deg, #2e7d32, #43a047, #66bb6a);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.trust-card:hover::before {
  opacity: 1;
}

/* Card Header */
.trust-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.trust-card__icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.trust-card__icon-wrapper--parents {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: var(--color-success);
}

.trust-card:hover .trust-card__icon-wrapper {
  transform: scale(1.1) rotate(-8deg);
}

.trust-card__badge {
  background: linear-gradient(135deg, rgba(21,101,192,0.15), rgba(21,101,192,0.08));
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(21,101,192,0.2);
}

.trust-card__badge--parents {
  background: linear-gradient(135deg, rgba(76,175,80,0.15), rgba(76,175,80,0.08));
  color: var(--color-success);
  border: 1px solid rgba(76,175,80,0.2);
}

.trust-card__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-card__subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Trust List */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: linear-gradient(135deg, rgba(248,249,250,0.8), rgba(255,255,255,0.5));
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateX(8px);
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-item__icon {
  transform: scale(1.1) rotate(-5deg);
}

.trust-item__icon--blue {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}

.trust-item__icon--purple {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #6a1b9a;
}

.trust-item__icon--green {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.trust-item__icon--orange {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.trust-item__icon--red {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.trust-item__icon--success {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.trust-item__icon--info {
  background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
  color: #0277bd;
}

.trust-item__icon--warning {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.trust-item__icon--primary {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}

.trust-item__icon--accent {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  color: #c2185b;
}

.trust-item__content {
  flex: 1;
}

.trust-item__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-item__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Card Footer */
.trust-card__footer {
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trust-card__link--parents {
  color: var(--color-success);
}

.trust-card__link:hover {
  gap: 12px;
}

.trust-card__link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.trust-card__link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   ENROLLMENT CTA SECTION
   ============================================================ */
.enrollment-cta {
  background: #0d1e32;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.enrollment-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  pointer-events: none;
}

.enrollment-cta__card {
  background: rgba(18, 35, 58, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.enrollment-cta__left {
  flex: 1;
}

.enrollment-cta__icon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 30px;
}

.enrollment-cta__icon-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.enrollment-cta__icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(70, 110, 170, 0.25);
}

.enrollment-cta__icon-ring--1 {
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  border-color: rgba(70, 110, 170, 0.2);
}

.enrollment-cta__icon-ring--2 {
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-color: rgba(70, 110, 170, 0.12);
}

.enrollment-cta__icon-ring--3 {
  top: 50%;
  left: 50%;
  width: 145px;
  height: 145px;
  transform: translate(-50%, -50%);
  border-color: rgba(70, 110, 170, 0.3);
}

.enrollment-cta__icon-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #1a3555, #152840);
  border: 2px solid rgba(70, 110, 170, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffb300;
  box-shadow: 
    0 0 25px rgba(70, 110, 170, 0.12),
    inset 0 0 25px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.enrollment-cta__icon-dots {
  position: absolute;
  inset: 0;
}

.enrollment-cta__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff9800;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 152, 0, 0.5);
}

.enrollment-cta__dot--x {
  top: 18px;
  right: 42px;
  width: auto;
  height: auto;
  background: transparent;
  font-size: 11px;
  color: #4c8ef8;
  box-shadow: none;
  animation: none;
  font-weight: 400;
}

.enrollment-cta__dot--1 {
  top: 24px;
  right: 28px;
  width: 3px;
  height: 3px;
  background: #ff9800;
  animation: dotFloat 3s ease-in-out infinite;
}

.enrollment-cta__dot--2 {
  top: 32%;
  left: 8px;
  width: 3px;
  height: 3px;
  background: #ff9800;
  animation: dotFloat 3s ease-in-out infinite 1s;
}

.enrollment-cta__dot--3 {
  bottom: 30px;
  right: 18px;
  width: 3px;
  height: 3px;
  background: #ff9800;
  animation: dotFloat 3s ease-in-out infinite 2s;
}

.enrollment-cta__dot--4 {
  top: 55px;
  left: 12px;
  width: 2px;
  height: 2px;
  background: #ff9800;
  animation: dotFloat 3s ease-in-out infinite 1.5s;
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.enrollment-cta__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.enrollment-cta__title-highlight {
  font-weight: 900;
  color: #4c8ef8;
  position: relative;
  display: inline-block;
}

.enrollment-cta__title-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 95px;
  height: 3px;
  background: #ffb300;
  border-radius: 1px;
}

.enrollment-cta__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 35px;
  font-weight: 400;
}

.enrollment-cta__badges {
  display: flex;
  gap: 8px;
}

.enrollment-cta__badge {
      display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.3s;
}
.enrollment-cta__badge:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.enrollment-cta__badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.enrollment-cta__badge-icon--blue {
  background: linear-gradient(135deg, #4c8ef8, #3b7dd6);
  box-shadow: 0 3px 12px rgba(76, 142, 248, 0.3);
}

.enrollment-cta__badge-icon--orange {
  background: linear-gradient(135deg, #ff9f43, #ff8800);
  box-shadow: 0 3px 12px rgba(255, 159, 67, 0.3);
}

.enrollment-cta__badge-icon--green {
  background: linear-gradient(135deg, #26de81, #20bf6b);
  box-shadow: 0 3px 12px rgba(38, 222, 129, 0.3);
}

.enrollment-cta__badge-content {
  display: flex;
  flex-direction: column;
}

.enrollment-cta__badge-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.enrollment-cta__badge-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.enrollment-cta__right {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enrollment-cta__offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 22px;
  background: transparent;
  border: 2px solid #ffb300;
  border-radius: 50px;
  color: #ffb300;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 179, 0, 0.4);
  }
}

.enrollment-cta__offer-badge i {
  font-size: 13px;
}

.enrollment-cta__pricing {
  text-align: center;
  margin-bottom: 28px;
}

.enrollment-cta__price-old {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  margin-bottom: 6px;
  font-weight: 400;
}

.enrollment-cta__price-wrapper {
  position: relative;
  display: inline-block;
}

.enrollment-cta__quote {
  position: absolute;
  top: -28px;
  left: -45px;
  font-size: 110px;
  font-weight: 900;
  color: #ffb300;
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}

.enrollment-cta__price-new {
  font-size: 88px;
  font-weight: 900;
  color: #ffb300;
  line-height: 1;
  font-family: var(--font-heading);
  text-shadow: 0 4px 16px rgba(255, 179, 0, 0.3);
}

.enrollment-cta__price-label {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.enrollment-cta__price-label::before,
.enrollment-cta__price-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.enrollment-cta__price-label::before {
  left: 0;
}

.enrollment-cta__price-label::after {
  right: 0;
}

.enrollment-cta__button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 20px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    transition: all 0.3s;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.enrollment-cta__button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.6);
}

.enrollment-cta__button i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.enrollment-cta__features {
  display: flex;
  gap: 22px;
  align-items: center;
}

.enrollment-cta__feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.enrollment-cta__feature i {
  font-size: 13px;
  color: #4c8ef8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: white;
  padding: 100px 0;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.testimonial-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.testimonial-card__rating {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ====================== */
/*  Video Testimonials  */
/* ====================== */
.toppersky-std-view {position: relative; }

.std-view-outer { width: 100%; height: 100%;}
.std-view-outer video {
	  width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    border:2px solid #dfab4e;
    background: linear-gradient(45deg, #484029, #201c11);
}
.stdReviewSwiper .videoThumbnail {
    width: 100%;
    border-radius: 15px;
    /* border: 2px solid #dfab4e; */
    background: linear-gradient(45deg, #484029, #201c11);
}
.stdReviewSwiper {
    width: 100% !important;
}

.swiper-pagination {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 10px;
    bottom: 50px !important;
}
.swiper-pagination .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: rgba(141, 138, 138, 0.459);
      border-radius: 50%;
      transition: all .22s ease;
      opacity: 1;
    }
    .swiper-pagination .swiper-pagination-bullet-active {
      width: 30px;
      height: 8px;
      border-radius: 10px;
      background: var(--color-primary-dark);
      box-shadow: 0 6px 16px rgba(246, 178, 42, 0.651);
    }

.stdReviewSwiper .swiper-wrapper {
    padding-bottom: 100px;
}

/* ===== Student Success Card Design ===== */
.std-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    /* border: 2px solid #dfab4e; */
    background: #0a0a1a;
}
.std-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.std-card .myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.std-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}
.std-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.std-card-video-badge {
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.std-card-video-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.std-card-duration {
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    font-weight: 500;
}
.std-card-quote {
    display: none;
}
.std-card-quote::after {
    display: none;
}
.std-card-quote p {
    font-size: 12px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}
.std-card-play {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5c842, #e8a515);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto;
    box-shadow: 0 4px 20px rgba(245,200,66,0.5);
    transition: transform 0.2s;
    flex-shrink: 0;
    position: relative;
}
.std-card-play::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}
.std-card:hover .std-card-play {
    transform: scale(1.1);
}
.std-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.5);
    padding: 8px 10px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}
.std-card-avatar {
    width: 36px;
    height: 36px;
    background: #1a1a2e;
    border: 2px solid #dfab4e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #dfab4e;
    flex-shrink: 0;
}
.std-card-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.std-card-info strong {
    color: #fff;
    font-size: 13px;
}
.std-card-info span {
    color: #ccc;
    font-size: 11px;
}
.std-verified {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #dfab4e;
    border-radius: 50%;
    margin-left: 3px;
    vertical-align: middle;
    position: relative;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
.std-verified::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 5px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
}



/* ===== Video Popup Modal ===== */
.video-popup-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.video-popup-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: visible;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.video-popup-content video {
    width: 100%;
    display: block;
    border-radius: 16px;
    max-height: 85vh;
}
.video-popup-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dfab4e;
    background: #1a1a2e;
    color: #dfab4e;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    padding: 0;
    line-height: 0;
}
.video-popup-close:hover {
    background: #dfab4e;
    color: #1a1a2e;
}



/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--color-bg-section);
  padding: 100px 0;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.faq-question:hover {
  background: var(--color-bg);
}

.faq-question.active {
  background: var(--color-primary);
}

.faq-question.active .faq-q-text {
  color: white;
}

.faq-question.active .faq-icon {
  color: white;
  transform: rotate(180deg);
}

.faq-q-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  color: var(--color-primary);
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 28px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 800px at 50% 50%, rgba(255,111,0,0.15), transparent);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.final-cta__subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta__price-old {
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
}

.final-cta__price-new {
  font-size: 56px;
  font-weight: 900;
  color: white;
}

.final-cta__badge {
  padding: 10px 20px;
  background: var(--color-accent);
  color: white;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(255,111,0,0.3);
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta__visual {
  margin-top: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo img {
  height: 40px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.7);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
}

.footer__col h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer__contact-item i {
  color: var(--color-accent);
  font-size: 16px;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__bottom-links a:hover {
  color: white;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 100px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  background: var(--color-primary-dark);
}

.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--color-border);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-mobile-bar__info {
  flex: 1;
}

.sticky-mobile-bar__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.sticky-mobile-bar__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-mobile-bar__old {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.sticky-mobile-bar__new {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner,
  .ai-section__inner,
  .animated-learning__inner,
  .quiz-section__inner,
  .trust-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    height: 500px;
    margin: 0 auto;
  }

  /* Animated Learning Tablet */
  .animated-learning {
    padding: 70px 0;
  }

  .animated-learning__visual {
    order: -1;
  }

  .animated-learning__content h2 {
    font-size: 36px;
  }

  .video-container {
    max-width: 100%;
  }

  .learning-benefits {
    gap: 12px;
  }

  .learning-benefit {
    padding: 14px 18px;
  }

  .learning-benefit__icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .learning-benefit__text {
    font-size: 15px;
  }
  
  .hero__float-card {
    display: none;
  }
  
  .hero__pricing-display {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero__discount-tag {
    align-items: flex-start;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Journey Grid Tablet */
  .journey-grid {
    gap: 24px;
  }

  .journey-box__inner {
    padding: 32px 28px;
  }

  .journey-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px;
    gap: 24px;
  }

  .journey-cta__btn {
    width: 100%;
    justify-content: center;
  }

  /* Enrollment CTA Tablet */
  .enrollment-cta__card {
    gap: 60px;
    padding: 45px 40px;
  }

  .enrollment-cta__icon-wrapper {
    width: 170px;
    height: 170px;
  }

  .enrollment-cta__icon-circle {
    width: 115px;
    height: 115px;
    font-size: 54px;
  }

  .enrollment-cta__icon-ring--1 {
    width: 150px;
    height: 150px;
  }

  .enrollment-cta__icon-ring--2 {
    width: 170px;
    height: 170px;
  }

  .enrollment-cta__icon-ring--3 {
    width: 130px;
    height: 130px;
  }

  .enrollment-cta__badges {
    gap: 6px;
  }

  .enrollment-cta__right {
    flex: 0 0 340px;
  }

  /* Student Reviews Tablet */
  .testimonials {
    padding: 80px 0;
  }

  .testimonials__header {
    margin-bottom: 50px;
  }

  .stdReviewSwiper .swiper-wrapper {
    padding-bottom: 90px;
  }

  .swiper-pagination {
    bottom: 40px !important;
  }

  .std-card-play {
    width: 48px;
    height: 48px;
  }

  .std-card-play::after {
    border-width: 9px 0 9px 16px;
  }

  .std-card-bottom {
    padding: 8px 10px;
  }

  .std-card-avatar {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .std-card-info strong {
    font-size: 12px;
  }

  .std-card-info span {
    font-size: 10px;
  }

  /* Practice Section Tablet */
  .practice-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .practice-visual {
    order: 2;
  }

  .practice-features {
    order: 1;
  }

  /* Subjects Section Tablet */
  .subjects {
    padding: 80px 0;
  }

  .subject-card {
    flex-direction: column;
    padding: 24px;
  }

  .subject-card__left {
    width: 100%;
  }

  .subject-card__right {
    width: 100%;
  }

  /* Trust Section Tablet */
  .trust-section__inner {
    gap: 32px;
  }

  .trust-card {
    padding: 32px;
  }

  .trust-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .header__nav {
    display: none;
  }

  .hbs--mobile {
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }
  
  .hero__inner {
    gap: 40px;
  }
  
  .hero__title {
    font-size: 36px;
  }
  
  .hero__title-highlight {
    font-size: 0.6em;
  }
  
  .hero__pricing-card {
    padding: 0;
  }
  
  .hero__pricing-content {
    padding: 24px 20px;
  }
  
  .hero__feature-list {
    grid-template-columns: 1fr;
  }
  
  .hero__ctas {
    flex-direction: column;
  }
  
  .btn--hero-primary,
  .btn--hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero__trust-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero__visual {
    height: 400px;
  }
  
  .hero__phone-wrapper {
    transform: scale(0.85);
  }

  .hero__float-card {
    display: none;
  }
  
  .hero__decorative {
    display: none;
  }

  .benefits-grid,
  .features-grid,
  .process-steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Student Reviews Mobile */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials__header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .stdReviewSwiper .swiper-wrapper {
    padding-bottom: 80px;
  }

  .swiper-pagination {
    bottom: 30px !important;
    gap: 8px;
  }

  .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    height: 7px;
  }

  .std-card {
    border-radius: 14px;
  }

  .std-card-overlay {
    padding: 10px;
  }

  .std-card-video-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .std-card-video-badge::before {
    width: 7px;
    height: 7px;
  }

  .std-card-duration {
    font-size: 10px;
    padding: 3px 7px;
  }

  .std-card-play {
    width: 45px;
    height: 45px;
  }

  .std-card-play::after {
    border-width: 8px 0 8px 14px;
  }

  .std-card-bottom {
    padding: 7px 9px;
    border-radius: 10px;
  }

  .std-card-avatar {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .std-card-info strong {
    font-size: 12px;
  }

  .std-card-info span {
    font-size: 10px;
  }

  .video-popup-content {
    max-width: 420px;
    border-radius: 14px;
  }

  /* Animated Learning Mobile */
  .animated-learning {
    padding: 60px 0;
  }

  .animated-learning__inner {
    gap: 40px;
  }

  .animated-learning__content h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .video-container {
    border-radius: 16px;
  }

  .learning-benefits {
    gap: 10px;
  }

  .learning-benefit {
    padding: 12px 16px;
    gap: 12px;
  }

  .learning-benefit__icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .learning-benefit__text {
    font-size: 14px;
  }

  /* Enrollment CTA Mobile */
  .enrollment-cta__card {
    flex-direction: column;
    gap: 38px;
    padding: 38px 26px;
  }

  .enrollment-cta__left {
    text-align: center;
  }

  .enrollment-cta__icon-wrapper {
    width: 170px;
    height: 170px;
    margin: 0 auto 28px;
  }

  .enrollment-cta__icon-circle {
    width: 110px;
    height: 110px;
    font-size: 52px;
  }

  .enrollment-cta__icon-ring--1 {
    width: 150px;
    height: 150px;
  }

  .enrollment-cta__icon-ring--2 {
    width: 170px;
    height: 170px;
  }

  .enrollment-cta__icon-ring--3 {
    width: 130px;
    height: 130px;
  }

  .enrollment-cta__badges {
    flex-direction: column;
    gap: 14px;
  }

  .enrollment-cta__badge {
    justify-content: center;
  }

  .enrollment-cta__right {
    flex: 1;
    width: 100%;
  }

  .enrollment-cta__button {
    width: 100%;
    justify-content: center;
  }

  /* Journey Grid Mobile */
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-box__inner {
    padding: 28px 24px;
  }

  .journey-box__icon-bg {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .journey-box__title {
    font-size: 24px;
  }

  .journey-cta {
    padding: 28px 24px;
    gap: 20px;
  }

  .journey-cta__icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .journey-cta__title {
    font-size: 20px;
  }

  /* Practice Section Mobile */
  .practice-section {
    padding: 60px 0;
  }

  .practice-title {
    font-size: 32px;
  }

  .practice-subtitle {
    font-size: 16px;
  }

  .practice-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .practice-card {
    padding: 24px;
  }

  .practice-card__icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .practice-card__stat {
    font-size: 36px;
  }

  .practice-cards-row {
    grid-template-columns: 1fr;
  }

  .practice-feature {
    padding: 20px;
  }

  .practice-feature__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .practice-feature__title {
    font-size: 16px;
  }

  .practice-feature__desc {
    font-size: 13px;
  }

  /* Subjects Section Mobile */
  .subjects {
    padding: 60px 0;
  }

  .subjects__title {
    font-size: 32px;
  }

  .subjects__subtitle {
    font-size: 16px;
  }

  .subjects-container {
    gap: 20px;
  }

  .subject-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .subject-card__left {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .subject-card__icon-box {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .subject-card__title {
    font-size: 22px;
  }

  .subject-card__description {
    font-size: 13px;
  }

  .subject-card__right {
    width: 100%;
  }

  .subject-card__stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .subject-stat {
    padding: 10px;
  }

  .subject-stat__number {
    font-size: 18px;
  }

  .subject-card__features {
    justify-content: center;
  }

  .subject-feature {
    font-size: 12px;
    padding: 5px 12px;
  }

  .subject-card__btn {
    width: 100%;
    justify-content: center;
  }

  .subject-card__action {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .subject-card__form,
  .subject-card__form .subject-card__btn {
    width: 100%;
    justify-content: center;
  }

  .subjects-combo-cta {
    padding: 22px 20px;
  }

  .subjects-combo-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .subjects-combo-cta__buy {
    width: 100%;
    align-items: stretch;
  }

  .subjects-combo-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .subjects-combo-cta__pricing {
    justify-content: flex-start;
  }

  /* Trust Section Mobile */
  .trust-section {
    padding: 60px 0;
  }

  .trust-section__title {
    font-size: 32px;
  }

  .trust-section__inner {
    gap: 24px;
  }

  .trust-card {
    padding: 28px 24px;
  }

  .trust-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-card__icon-wrapper {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .trust-card__title {
    font-size: 22px;
  }

  .trust-card__subtitle {
    font-size: 14px;
  }

  .trust-item {
    padding: 14px;
  }

  .trust-item__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .trust-item__title {
    font-size: 15px;
  }

  .trust-item__desc {
    font-size: 13px;
  }

  .feature-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-card--featured .feature-card__icon {
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero__pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta__pricing {
    flex-direction: column;
  }

  .final-cta__buttons {
    flex-direction: column;
  }

  .final-cta__buttons .btn {
    width: 100%;
  }

  /* Animated Learning Small Mobile */
  .animated-learning {
    padding: 50px 0;
  }

  .animated-learning__inner {
    gap: 32px;
  }

  .animated-learning__content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .video-container {
    border-radius: 12px;
  }

  .learning-benefits {
    gap: 8px;
  }

  .learning-benefit {
    padding: 10px 14px;
    gap: 10px;
    flex-direction: row;
  }

  .learning-benefit__icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .learning-benefit__text {
    font-size: 13px;
  }

  /* Practice Section Small Mobile */
  .practice-title {
    font-size: 28px;
  }

  .practice-subtitle {
    font-size: 15px;
  }

  .practice-card {
    padding: 20px;
  }

  .practice-card__stat {
    font-size: 32px;
  }

  .practice-feature {
    flex-direction: column;
    text-align: center;
  }

  .practice-feature__icon {
    margin: 0 auto;
  }

  /* Trust Section Small Mobile */
  .trust-section__title {
    font-size: 28px;
  }

  .trust-card {
    padding: 24px 20px;
  }

  .trust-card__icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .trust-card__title {
    font-size: 20px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    padding: 16px 12px;
  }

  .trust-item__icon {
    margin: 0 auto;
  }

  /* Journey Section Small Mobile */
  .journey-box__inner {
    padding: 24px 20px;
  }

  .journey-box__icon-bg {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .journey-box__title {
    font-size: 22px;
  }

  .journey-box__desc {
    font-size: 14px;
  }

  .journey-box__list li {
    font-size: 13px;
  }

  .journey-cta {
    padding: 24px 20px;
  }

  .journey-cta__icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .journey-cta__title {
    font-size: 18px;
  }

  .journey-cta__text {
    font-size: 14px;
  }

  /* Subjects Small Mobile */
  .subjects__title {
    font-size: 28px;
  }

  .subjects__subtitle {
    font-size: 15px;
  }

  .subject-card {
    padding: 18px;
  }

  .subject-card__icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .subject-card__title {
    font-size: 20px;
  }

  .subject-stat__number {
    font-size: 16px;
  }

  .subject-stat__label {
    font-size: 10px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .scroll-top {
    right: 24px;
  }

  /* Enrollment CTA Small Mobile */
  .enrollment-cta {
    padding: 55px 0;
  }

  .enrollment-cta__card {
    padding: 30px 18px;
    gap: 30px;
  }

  .enrollment-cta__icon-wrapper {
    width: 150px;
    height: 150px;
  }

  .enrollment-cta__icon-circle {
    width: 100px;
    height: 100px;
    font-size: 46px;
  }

  .enrollment-cta__icon-ring--1 {
    width: 130px;
    height: 130px;
  }

  .enrollment-cta__icon-ring--2 {
    width: 150px;
    height: 150px;
  }

  .enrollment-cta__icon-ring--3 {
    width: 110px;
    height: 110px;
  }

  .enrollment-cta__title {
    font-size: 34px;
  }

  .enrollment-cta__subtitle {
    font-size: 13px;
  }

  .enrollment-cta__badge-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .enrollment-cta__badge-title {
    font-size: 13px;
  }

  .enrollment-cta__badge-text {
    font-size: 10px;
  }

  .enrollment-cta__price-new {
    font-size: 70px;
  }

  .enrollment-cta__quote {
    font-size: 90px;
    left: -35px;
  }

  .enrollment-cta__button {
    padding: 16px 32px;
    font-size: 13px;
  }

  .enrollment-cta__features {
    flex-direction: column;
    gap: 10px;
  }

  /* Student Reviews Small Mobile */
  .testimonials {
    padding: 50px 0;
  }

  .testimonials__header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .stdReviewSwiper .swiper-wrapper {
    padding-bottom: 70px;
  }

  .swiper-pagination {
    bottom: 25px !important;
    gap: 6px;
  }

  .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    height: 6px;
  }

  .std-card {
    border-radius: 12px;
  }

  .std-card-overlay {
    padding: 8px;
  }

  .std-card-video-badge {
    font-size: 8px;
    padding: 2px 7px;
  }

  .std-card-video-badge::before {
    width: 6px;
    height: 6px;
  }

  .std-card-duration {
    font-size: 9px;
    padding: 2px 6px;
  }

  .std-card-play {
    width: 42px;
    height: 42px;
    margin: 10px auto;
  }

  .std-card-play::after {
    border-width: 7px 0 7px 12px;
  }

  .std-card-bottom {
    padding: 6px 8px;
    border-radius: 8px;
    gap: 8px;
  }

  .std-card-avatar {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-width: 1.5px;
  }

  .std-card-info strong {
    font-size: 11px;
  }

  .std-card-info span {
    font-size: 9px;
  }

  .std-verified {
    width: 14px;
    height: 14px;
  }

  .std-verified::after {
    top: 2px;
    left: 4px;
    width: 4px;
    height: 7px;
  }

  .video-popup-modal {
    padding: 15px;
  }

  .video-popup-content {
    max-width: 360px;
    border-radius: 12px;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.animate-scale {
  opacity: 0;
  animation: scaleIn 0.8s ease forwards;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .header,
  .announcement-bar,
  .whatsapp-float,
  .scroll-top,
  .sticky-mobile-bar,
  .footer {
    display: none;
  }
}

/* Board first, then the classes belonging to that board. */
.board-grade-form { display: inline-flex; min-width: 0; margin-right: 10px; }
.board-grade-picker { position: relative; min-width: 0; }
.board-grade-picker summary { list-style: none; cursor: pointer; }
.board-grade-picker summary::-webkit-details-marker { display: none; }
.board-grade-select {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  max-width: 290px; min-width: 0; min-height: 36px; padding: 7px 12px;
  border: 1.5px solid #cbd5e1; border-radius: 999px;
  background: #f8fafc; color: #1e293b; font: inherit; font-size: 12px; font-weight: 700;
}
.board-grade-select span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board-grade-picker summary:focus-visible, .board-grade-class:focus-visible {
  outline: 2px solid #2563eb; outline-offset: 2px;
}
.board-grade-menu {
  position: absolute; top: 100%; right: 0; z-index: 1001;
  width: min(255px, calc(100vw - 32px)); max-height: 65vh; overflow-y: auto;
  padding: 10px; border: 1px solid #e2e8f0;
  border-radius: 14px; background: #fff; color: #1e293b;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
}
.board-grade-menu__heading { margin: 0 0 8px; padding: 6px 8px; font-size: 12px; font-weight: 700; color: #64748b; }
.board-grade-menu > .board-grade-menu__heading, .board-grade-board { width: 100%; }
.board-grade-board__trigger, .board-grade-class {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 10px 9px; border: 0; border-radius: 8px;
  background: transparent; color: #334155; font: inherit; font-size: 13px;
  font-weight: 600; text-align: left; cursor: pointer;
}
.board-grade-board__trigger:hover, .board-grade-board[open] > summary,
.board-grade-class:hover, .board-grade-picker .is-selected { background: #eff6ff; color: #1d4ed8; }
.board-grade-classes {
  position: fixed; z-index: 2100; width: min(170px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px); overflow-y: auto; padding: 10px;
  border: 1px solid #e2e8f0; border-radius: 14px;
  background: #fff; color: #1e293b;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
}
.board-grade-class + .board-grade-class { margin-top: 4px; }
.board-grade-menu__empty { padding: 8px; font-size: 13px; color: #64748b; }
.board-grade-form--mobile { display: flex; margin: 8px 0 16px; width: 100%; }
.board-grade-form--mobile .board-grade-picker { width: 100%; }
.board-grade-form--mobile .board-grade-select { width: 100%; max-width: 100%; min-height: 42px; border-radius: 10px; }
.board-grade-form--mobile .board-grade-menu { position: relative; width: 100%; margin-top: 6px; min-height: 0; max-height: 50vh; }
.board-grade-form--mobile .board-grade-board,
.board-grade-form--mobile .board-grade-menu > .board-grade-menu__heading { width: 100%; }

.board-grade-form--mobile .board-grade-board[open] > summary i { transform: rotate(90deg); }
/* Purchased products open the learning app's store listing. */
.is-purchased {
  position: relative;
  isolation: isolate;
  border-color: #86efac !important;
  box-shadow: 0 6px 24px rgba(22,163,74,.18), 0 0 0 1px rgba(34,197,94,.12) !important;
}
.is-purchased:hover {
  box-shadow: 0 10px 30px rgba(22,163,74,.26), 0 0 0 1px #86efac !important;
}
.purchased-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 3;
  cursor: pointer;
}
.purchased-card-link:focus-visible { outline: none; }
.purchased-card-link:focus-visible::after {
  outline: 3px solid #16a34a;
  outline-offset: -3px;
}
.purchased-card-badge {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border: 1px solid #bbf7d0; border-radius: 999px;
  background: #dcfce7; color: #166534;
  font-size: 11px; font-weight: 800; line-height: 1.3;
  box-shadow: 0 2px 8px rgba(22,163,74,.12);
}
.purchased-card-hint { color: #15803d; font-size: 12px; font-weight: 700; }
.combo-card.is-purchased .combo-card__top { padding-top: 46px; }
.ds-combo-hero.is-purchased { padding-top: 48px; }
.ds-combo-hero .purchased-card-hint { color: #dcfce7; }
.subjects-combo-cta.is-purchased { padding-top: 46px; }
.subjects-combo-cta.is-purchased .purchased-card-hint { color: #dcfce7; }
/* Keep purchased course enrollment actions visible but unavailable. */
.purchased-enrollment { display: inline-flex; flex-direction: column; align-items: center; gap: 7px; max-width: 100%; }
.purchased-enrollment__tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: #dcfce7; color: #166534; border: 1px solid #bbf7d0;
  font-size: 11px; font-weight: 800; line-height: 1.3; white-space: nowrap;
}
.purchased-enrollment button:disabled {
  cursor: not-allowed; opacity: .55; filter: grayscale(.35);
  transform: none !important; box-shadow: none !important;
}
.purchased-enrollment button:disabled .btn__glow { display: none; }
.enrollment-cta .purchased-enrollment { display: flex; }
.hero__offer-badge--purchased {
  top: 44px;
  right: 12px;
  background: #dcfce7;
  color: #166534;
  box-shadow: 0 4px 16px rgba(22,163,74,.2);
}
.hero__pricing-card--purchased .hero__pricing-content { padding-top: 96px; }
.hero__ctas .purchased-enrollment { align-items: stretch; }
/* Purchased labels sit in the top-right corner of course promotion cards. */
.course-purchased-corner { position: relative; }
.course-purchased-corner > .course-purchased-corner__tag {
  position: absolute; top: 16px; right: 16px; z-index: 3;
}
.enrollment-cta__card.course-purchased-corner { padding-top: 58px; }
.final-cta__inner.course-purchased-corner { padding-top: 48px; }
.final-cta__inner.course-purchased-corner > .course-purchased-corner__tag { top: 0; right: 0; }
.purchased-enrollment > a { text-decoration: none; }
.dash-subject-card.is-purchased { padding-top: 44px; }
.dash-combo-cta.is-purchased { padding-top: 48px; }
.dash-combo-cta .purchased-card-hint { color: #dcfce7; }
.dash-subject-card__btn, .dash-combo-cta__btn { text-decoration: none; }
