/* ==========================================================================
   Afsar Enterprises - Global Design System & Stylesheet (v2.0 Premium)
   Ultra-Attractive, Modern, High-Converting & 100% Mobile-Responsive UI
   ========================================================================== */

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

:root {
  /* Core Luxury Palette */
  --color-primary: #0F172A;          /* Deep Midnight Slate */
  --color-primary-light: #1E293B;    /* Secondary Dark Slate */
  --color-primary-dark: #0A0F1D;     /* Obsidian Dark */
  
  --color-accent: #0284C7;           /* Vibrant Sapphire */
  --color-accent-hover: #0369A1;
  --color-accent-light: #E0F2FE;
  --color-accent-glow: rgba(2, 132, 199, 0.25);
  
  --color-teal: #0D9488;             /* Futuristic Teal */
  --color-emerald: #10B981;          /* Growth Emerald */
  --color-emerald-light: #ECFDF5;
  --color-emerald-glow: rgba(16, 185, 129, 0.25);
  
  --color-purple: #8B5CF6;           /* Creative Violet */
  --color-purple-light: #F5F3FF;
  
  --color-amber: #F59E0B;            /* Gold Star */
  --color-amber-light: #FEF3C7;
  
  --color-whatsapp: #25D366;         /* Official WhatsApp */
  --color-whatsapp-hover: #20BA5A;
  --color-whatsapp-dark: #128C7E;
  
  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-bg-light: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-subtle: #F1F5F9;
  --color-card-border: rgba(226, 232, 240, 0.9);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevated Modern Shadows & Glows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(15, 23, 42, 0.07), 0 1px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.12), 0 6px 14px -3px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 24px 50px -12px rgba(15, 23, 42, 0.16), 0 8px 24px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow-blue: 0 0 35px -5px rgba(2, 132, 199, 0.35);
  --shadow-glow-emerald: 0 0 35px -5px rgba(16, 185, 129, 0.35);
  --shadow-glow-whatsapp: 0 10px 28px rgba(37, 211, 102, 0.45);
  --shadow-card-hover: 0 22px 45px -10px rgba(2, 132, 199, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);

  /* Radii & Transitions */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  background-image: 
    radial-gradient(at 0% 0%, rgba(2, 132, 199, 0.08) 0px, transparent 45%),
    radial-gradient(at 100% 5%, rgba(139, 92, 246, 0.07) 0px, transparent 40%),
    radial-gradient(at 50% 50%, rgba(16, 185, 129, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 90%, rgba(2, 132, 199, 0.06) 0px, transparent 45%),
    radial-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

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

/* ==========================================================================
   Container Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 880px;
}

.container-funnel {
  max-width: 820px;
}

/* ==========================================================================
   Typography & Accents
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.35rem, 5.5vw, 3.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); letter-spacing: -0.02em; }
h4 { font-size: 1.2rem; }

p {
  color: var(--color-text-muted);
  font-size: 1.06rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-emerald { color: var(--color-emerald); }

/* Shimmering Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #0284C7 0%, #0D9488 45%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #38BDF8 0%, #818CF8 50%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   Section Header Component
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.75rem auto;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  color: #065F46;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
  backdrop-filter: blur(8px);
}

.section-tag-blue {
  background: rgba(2, 132, 199, 0.1);
  color: #0369A1;
  border-color: rgba(2, 132, 199, 0.28);
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.12);
}

.section-tag-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #6D28D9;
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.12);
}

.section-title {
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

/* Shimmer shine across buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.btn:hover::after {
  left: 170%;
}

.btn-primary {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border-color: #334155;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(2, 132, 199, 0.25);
  color: #FFFFFF;
  border-color: var(--color-accent);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow-whatsapp);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0E766A 100%);
  transform: translateY(-2.5px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

.btn-lg {
  padding: 1.15rem 2.35rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

.btn:disabled, .btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
  filter: grayscale(40%);
}

/* Pulsing Green Glow for CTA (When Unlocked) */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

.pulse-active {
  animation: pulse-whatsapp 2.2s infinite ease-in-out !important;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-normal);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-primary);
  letter-spacing: -0.03em;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, #0F172A 0%, #0284C7 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: -0.01em;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #0284C7, #10B981);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.55rem;
  color: var(--color-primary);
  background: #FFFFFF;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--color-bg-light);
  border-color: var(--color-accent);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 5.1rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 5.1rem);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.25rem 1.75rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: block;
  color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 5.5rem 0 4.75rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Live Beacon Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFFFFF;
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.1);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--color-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: beacon-pulse 2s infinite;
}

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

.hero-title {
  margin-bottom: 1.45rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.35rem;
  color: var(--color-text-muted);
  line-height: 1.72;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-bottom: 2.85rem;
}

/* Social Proof Stats Bar */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--shadow-sm);
}

.stat-item h4 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
  letter-spacing: -0.03em;
}

.stat-item p {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

/* Hero Mentor Showcase Card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 132, 199, 0.45);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0284C7 0%, #0D9488 50%, #10B981 100%);
}

.mentor-profile {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 1.85rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.mentor-avatar {
  width: 4.75rem;
  height: 4.75rem;
  background: linear-gradient(135deg, #0F172A 0%, #0284C7 100%);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 900;
  border: 3.5px solid #E0F2FE;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
  flex-shrink: 0;
}

.mentor-meta h4 {
  margin-bottom: 0.25rem;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.mentor-meta p {
  font-size: 0.95rem;
  font-weight: 600;
}

.mentor-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #065F46;
  background: #ECFDF5;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid #A7F3D0;
  margin-top: 0.35rem;
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  margin-bottom: 2.25rem;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-size: 1rem;
  color: var(--color-text-main);
  font-weight: 600;
}

.feature-check-icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: var(--radius-full);
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Sections General
   ========================================================================== */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-alt {
  background-color: #FFFFFF;
  position: relative;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

/* ==========================================================================
   SERVICES CARDS (#services) - Thematic Color Grading
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0284C7, #10B981);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--shadow-card-hover);
}

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

/* Service Card Tracks Signature Accents */
.service-card.theme-blue .service-icon-box {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  color: #0284C7;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.22);
}
.service-card.theme-purple .service-icon-box {
  background: linear-gradient(135deg, #F3E8FF 0%, #DDD6FE 100%);
  color: #7C3AED;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.22);
}
.service-card.theme-emerald .service-icon-box {
  background: linear-gradient(135deg, #ECFDF5 0%, #A7F3D0 100%);
  color: #059669;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.22);
}
.service-card.theme-amber .service-icon-box {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #D97706;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.22);
}

.service-track-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  display: block;
}

.service-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.65rem;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.68;
}

.service-card-meta {
  padding-top: 1.35rem;
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-emerald);
}

/* ==========================================================================
   WHY CHOOSE US / METHODOLOGY
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.35rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.35);
}

.why-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.25) 0%, rgba(16, 185, 129, 0.12) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  line-height: 1;
  user-select: none;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  max-width: 80%;
}

.why-card p {
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.25rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.35);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.85rem;
  color: rgba(15, 23, 42, 0.07);
  font-size: 4rem;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-rating {
  display: flex;
  gap: 0.35rem;
  color: var(--color-amber);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.25));
}

.testimonial-quote {
  font-size: 1.08rem;
  color: var(--color-text-main);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-subtle);
  flex-wrap: wrap;
}

.author-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0F172A 0%, #0284C7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  border: 2px solid #E0F2FE;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.verified-mentee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #065F46;
  background: #ECFDF5;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid #A7F3D0;
  margin-left: auto;
}

/* ==========================================================================
   ACCORDION FAQ
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.faq-item:hover {
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item.is-active {
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.85rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  line-height: 1.4;
}

.faq-icon {
  transition: transform var(--transition-normal);
  color: var(--color-accent);
  flex-shrink: 0;
  background: #EFF6FF;
  padding: 0.35rem;
  border-radius: var(--radius-full);
  box-sizing: content-box;
}

.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.35s ease;
  padding: 0 1.85rem;
  background: #F8FAFC;
}

.faq-item.is-active .faq-answer {
  padding: 0 1.85rem 1.65rem 1.85rem;
  border-top: 1px solid var(--color-border-subtle);
}

.faq-answer p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.78;
}

/* ==========================================================================
   BANNER CTA
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0A0F1D 0%, #0F172A 50%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.cta-banner p {
  color: #94A3B8;
  max-width: 660px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.18rem;
  line-height: 1.72;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2.25rem;
  font-size: 0.88rem;
  color: #64748B;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   FUNNEL PAGE STYLING (training.html) - Cinema Masterclass Frame
   ========================================================================== */
.funnel-hero {
  padding: 4rem 0 6rem;
  min-height: calc(100vh - 5.1rem - 180px);
}

.funnel-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: 3.25rem 2.75rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
  position: relative;
}

/* Stepper Component */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-pill {
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  background: #E2E8F0;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.step-pill.active {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
  border-color: #334155;
}

/* Step 1: Name Input */
.name-input-box {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.85rem;
  text-align: left;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.form-control {
  width: 100%;
  padding: 1.1rem 1.45rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  background: #FFFFFF;
  color: var(--color-primary);
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.18);
}

.form-help {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Cinema Masterclass Frame */
.cinema-container {
  background: #0B1120;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 1.75rem 0;
}

.cinema-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
  color: #94A3B8;
}

.cinema-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000000;
}

/* Center Clickable Play/Pause Overlay */
.custom-player-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}

.center-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--transition-fast);
}

.center-play-overlay.is-playing {
  background: transparent;
}

.center-play-btn {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(2, 132, 199, 0.4);
  transition: all var(--transition-normal);
}

.center-play-overlay:hover .center-play-btn {
  transform: scale(1.14);
  background: var(--color-accent);
  border-color: #FFFFFF;
}

.center-play-overlay.is-playing .center-play-btn {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.center-play-overlay.is-playing:hover .center-play-btn {
  opacity: 0.92;
  transform: scale(1);
}

/* Bottom Controls Bar (Play/Pause, Time, Mute - NO SEEKER) */
.custom-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.92) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  z-index: 12;
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.player-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.player-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.time-display {
  color: #F1F5F9;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.no-seek-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(15, 23, 42, 0.85);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Shimmering Progress Bar */
.progress-container {
  margin: 1.85rem 0;
  background: #E2E8F0;
  border-radius: var(--radius-full);
  height: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0284C7 0%, #06B6D4 50%, #10B981 100%);
  border-radius: var(--radius-full);
  transition: width 0.35s ease;
  position: relative;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

/* Gate Status Indicator Badge */
.status-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 1.85rem;
  width: 100%;
  justify-content: center;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.status-gate-badge.unlocked {
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   CONTACT PAGE STYLING (contact.html)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.35);
}

.contact-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  background: #EFF6FF;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ==========================================================================
   POLICY PAGES STYLING (privacy, terms, refund, disclaimer)
   ========================================================================== */
.policy-card {
  background: #FFFFFF;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4rem;
}

.policy-card h2 {
  font-size: 1.55rem;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.policy-card h3 {
  font-size: 1.25rem;
  margin: 1.6rem 0 0.75rem 0;
}

.policy-card p, .policy-card ul, .policy-card ol {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.35rem;
  line-height: 1.78;
}

.policy-card ul, .policy-card ol {
  padding-left: 1.65rem;
}

.policy-card li {
  margin-bottom: 0.6rem;
}

.policy-contact-box {
  margin-top: 3rem;
  background: #F8FAFC;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.policy-contact-box h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   FOOTER (Shared across all pages)
   ========================================================================== */
.footer {
  background: #0B1120;
  color: #94A3B8;
  padding: 5.5rem 0 2.75rem;
  border-top: 1px solid #1E293B;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0284C7 0%, #10B981 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3.25rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-description {
  font-size: 0.98rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
  color: #94A3B8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.96rem;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--color-emerald);
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2.35rem;
  border-top: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.85rem;
}

.footer-bottom-links a {
  color: #64748B;
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Preserves 100% Responsiveness & Usability)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-card {
    max-width: 580px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }
}

@media (max-width: 768px) {
  .header-actions .btn-whatsapp {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 3.75rem 0 3.25rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

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

  .section {
    padding: 4.5rem 0;
  }

  .funnel-card {
    padding: 2.25rem 1.65rem;
  }

  .policy-card {
    padding: 2.25rem 1.65rem;
  }

  .cta-banner {
    padding: 3.75rem 1.75rem;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .step-pill {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1.02rem;
  }

  .hero-card {
    padding: 2rem 1.5rem;
  }

  .mentor-avatar {
    width: 4rem;
    height: 4rem;
    font-size: 1.35rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .why-card {
    padding: 2.25rem 1.65rem;
  }

  .testimonial-card {
    padding: 2.25rem 1.65rem;
  }

  .center-play-btn {
    width: 4.5rem;
    height: 4.5rem;
  }

  .custom-controls-bar {
    padding: 0.75rem 1rem;
  }

  .no-seek-badge {
    display: none;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-badge {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.05rem;
  }
}
