/*
Theme Name: AMC Mentor WP
Theme URI: https://amcmentor.com.au
Author: AMC Mentor Team
Author URI: https://amcmentor.com.au
Description: Professional WordPress theme for AMC Mentor — structured, book-and-guideline-based AMC MCQ exam preparation for international medical graduates. Pixel-perfect replication of the AMC Mentor v2.0 HTML design.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amc-mentor
Tags: one-column, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, translation-ready
*/

/* ============================================
   AMC MENTOR v2.0 — WORDPRESS THEME
   All styles from HTML design, adapted for WP
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAF8;
  --bg-tertiary: #F5F5F3;
  --bg-elevated: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --text-on-accent: #FFFFFF;
  --accent-primary: #0F2B46;
  --accent-secondary: #0D9488;
  --accent-warm: #F59E0B;
  --accent-success: #10B981;
  --accent-danger: #EF4444;
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --gradient-hero: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  --gradient-cta: linear-gradient(135deg, #0D9488 0%, #3B82F6 100%);
  --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
  --gradient-border: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  --glass-bg: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.3);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.08);
  --nav-height: 72px;
  --container-max: 1280px;
  --container-pad: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

:root.dark {
  --bg-primary: #0D1117;
  --bg-secondary: #161B22;
  --bg-tertiary: #21262D;
  --bg-elevated: #21262D;
  --text-primary: #F0F6FC;
  --text-secondary: #8B949E;
  --text-muted: #6E7681;
  --accent-primary: #1F6FEB;
  --accent-secondary: #39D2C0;
  --accent-warm: #F0883E;
  --accent-success: #56D364;
  --accent-danger: #F85149;
  --border-light: #30363D;
  --border-medium: #484F58;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.5), 0 2px 4px -2px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.5), 0 4px 6px -4px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.6), 0 8px 10px -6px rgba(0,0,0,0.5);
  --gradient-hero: linear-gradient(135deg, #0D1117 0%, #161B22 50%, #1F6FEB 100%);
  --gradient-cta: linear-gradient(135deg, #1F6FEB 0%, #39D2C0 100%);
  --gradient-warm: linear-gradient(135deg, #F0883E 0%, #DB61A2 100%);
  --gradient-glass: linear-gradient(135deg, rgba(22,27,34,0.8) 0%, rgba(13,17,23,0.4) 100%);
  --gradient-border: linear-gradient(135deg, #1F6FEB 0%, #39D2C0 50%, #56D364 100%);
  --glass-bg: rgba(22,27,34,0.85);
  --glass-border: rgba(48,54,61,0.6);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-top: calc(32px + var(--nav-height)); /* Notification bar + Nav */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
.wp-block-separator { display: none; }
.skip-link { position: absolute; left: -9999px; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed; top: 32px; left: 0; width: 0%; height: 3px; z-index: 10001;
  background: var(--gradient-border);
  transition: width 0.1s linear;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 9998;
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: var(--accent-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  opacity: 0; transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: all var(--transition-base);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
  background: var(--accent-secondary);
}
.back-to-top svg { width: 20px; height: 20px; stroke-width: 2.5; }

/* --- Notification Bar --- */
/* --- Notification Bar --- */
.notification-bar {
  position: fixed;
  z-index: 100001;
  top: auto;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--accent-primary) 0%, #1a3a5c 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  font-size: 0.8rem;
  line-height: 1.5;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  overflow: hidden;
}
.notification-bar.hidden {
  max-height: 0 !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.notification-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
}
.notification-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
}
.notification-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.notification-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.8rem;
}
.marquee-item strong {
  color: var(--accent-warm);
  font-weight: 600;
}
.notification-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}
.notification-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.notification-close svg {
  width: 14px;
  height: 14px;
  display: block;
}

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

:root.dark .notification-bar {
  background: linear-gradient(90deg, #1E40AF 0%, #0D9488 100%);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  z-index: 100000;
  height: var(--nav-height);
  transition: top 0.15s ease, background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  width: 100%; max-width: var(--container-max);
  padding: 0 var(--container-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; transition: filter var(--transition-base); }
:root:not(.dark) .nav-logo img { filter: none; }
:root.dark .nav-logo img { filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255,255,255,0.2)); }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition-fast); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent-primary); transition: width var(--transition-base);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Mega Menu Trigger */
.nav-mega-trigger { position: relative; }
.nav-mega-trigger .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.nav-chevron { transition: transform var(--transition-fast); display: inline-block; }
.nav-mega-trigger:hover .nav-chevron { transform: rotate(180deg); }

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 0; min-width: 820px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
  z-index: 1000; pointer-events: none; overflow: hidden;
}
.nav-mega-trigger:hover .mega-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.mega-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
:root.dark .mega-menu { border-color: rgba(48,54,61,0.6); box-shadow: var(--shadow-xl), 0 0 40px rgba(31,111,235,0.08); }
:root.dark .mega-menu::before { background: linear-gradient(to bottom, rgba(31,111,235,0.15), transparent); }

.mega-menu-inner { display: grid; grid-template-columns: 1fr 340px; min-height: 220px; }
.mega-menu-left { padding: 24px 24px 24px 28px; }
.mega-menu-links { margin-bottom: 20px; }
.mega-menu-links:last-child { margin-bottom: 0; }
.mega-menu-links h4 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent-primary); margin-bottom: 10px; padding-left: 2px;
}
.mega-menu-links a {
  display: flex; align-items: center; gap: 12px; padding: 9px 12px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  color: var(--text-primary); transition: all var(--transition-fast); position: relative;
}
.mega-menu-links a:hover { background: rgba(15,43,70,0.04); color: var(--accent-primary); padding-left: 16px; }
.mega-menu-links a.mm-coming-soon { opacity: 0.45; }
.mega-menu-links a.mm-coming-soon:hover { opacity: 0.75; background: rgba(15,43,70,0.04); }
.mega-menu-links a small {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--accent-primary);
  background: rgba(15,43,70,0.06); padding: 2px 7px; border-radius: 4px; margin-left: auto;
}
:root.dark .mega-menu-links a small { background: rgba(30,64,175,0.2); color: var(--accent-primary); }
.mm-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--bg-secondary); display: flex; align-items: center;
  justify-content: center; font-size: 15px; flex-shrink: 0;
  transition: all var(--transition-fast);
}
.mega-menu-links a:hover .mm-icon { background: rgba(15,43,70,0.1); }
:root.dark .mega-menu-links a:hover .mm-icon { background: rgba(30,64,175,0.2); }

/* Mega Menu Description Panel */
.mega-menu-desc {
  background: var(--accent-primary); padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px; position: relative; overflow: hidden;
}
:root.dark .mega-menu-desc { background: linear-gradient(135deg, #0F2B46 0%, #1E40AF 60%, #0D9488 100%); }
.mega-menu-desc::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.mega-menu-desc::after {
  content: ''; position: absolute; bottom: -30px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.mega-menu-desc h4 { font-size: 16px; font-weight: 700; color: white; margin: 0; position: relative; z-index: 1; }
.mega-menu-desc p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; position: relative; z-index: 1; }
.mm-cta {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px;
  font-weight: 600; color: white; padding: 10px 18px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition-fast); align-self: flex-start; margin-top: 6px; position: relative; z-index: 1;
}
.mm-cta:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.4); }
.mm-cta svg { transition: transform var(--transition-fast); }
.mm-cta:hover svg { transform: translateX(3px); }

/* Dark Mode Toggle */
.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-light); color: var(--text-secondary);
  transition: all var(--transition-fast); position: relative; overflow: hidden;
}
.theme-toggle:hover { background: var(--bg-secondary); color: var(--text-primary); border-color: var(--border-medium); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon {
  position: absolute; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
:root:not(.dark) .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
:root:not(.dark) .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
:root.dark .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
:root.dark .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

/* CTA Button */
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
  background: var(--gradient-cta); color: var(--text-on-accent);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(15,43,70,0.2); white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(31,111,235,0.3); }
.btn-cta:active { transform: translateY(0); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav-hamburger span { display: block; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition-base); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 100000;
  background: var(--bg-primary); padding: calc(var(--nav-height) + 24px) 24px 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
  opacity: 0; transform: translateY(-10px);
  transition: all var(--transition-base);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu .nav-link { font-size: 20px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  transition: all var(--transition-fast); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary { background: var(--gradient-cta); color: white; box-shadow: 0 4px 14px rgba(31,111,235,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,111,235,0.35); }
.btn-ghost { background: transparent; border: 2px solid var(--accent-primary); color: var(--accent-primary); }
.btn-ghost:hover { background: var(--accent-primary); color: white; transform: translateY(-2px); }
.btn-secondary { background: var(--accent-secondary); color: white; box-shadow: 0 4px 14px rgba(13,148,136,0.25); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,0.35); }

/* Ripple Effect */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0); animation: rippleAnim 0.6s ease-out; pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* --- Container & Section --- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle { font-size: 1.125rem; color: var(--text-secondary); max-width: 640px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 12px;
}
:root.dark .section-label { color: var(--accent-primary); }

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 32px;
  margin-top: calc(var(--nav-height) * -1); /* Pull hero behind the menu bar */
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--gradient-hero);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

/* Floating Particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
}
.hero-left { color: white; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-success); animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.7;
  color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-btn-primary {
  background: var(--gradient-cta); color: white;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(31,111,235,0.25);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,111,235,0.35); }

/* Hero buttons on dark/gradient backgrounds override to white bg */
.course-hero .hero-btn-primary,
.verify-hero .hero-btn-primary,
.terms-hero .hero-btn-primary {
  background: white; color: var(--accent-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.course-hero .hero-btn-primary:hover,
.verify-hero .hero-btn-primary:hover,
.terms-hero .hero-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.hero-btn-ghost {
  background: rgba(255,255,255,0.1); color: white;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px); transition: all var(--transition-fast);
}
.hero-btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero-social { display: flex; align-items: center; gap: 12px; }
.hero-avatars { display: flex; }
.hero-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: white;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar:nth-child(1) { background: #6366F1; }
.hero-avatar:nth-child(2) { background: #EC4899; }
.hero-avatar:nth-child(3) { background: #F59E0B; }
.hero-avatar:nth-child(4) { background: #10B981; }
.hero-avatar:nth-child(5) { background: #3B82F6; }
.hero-social-text { font-size: 14px; color: rgba(255,255,255,0.7); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255, 255, 255, 0.5); font-size: 12px;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-indicator .arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

.hero-right { display: flex; flex-direction: column; align-items: center; }

/* ============================================
   HERO RIGHT — 3D SUCCESS STORIES CAROUSEL
   ============================================ */
.carousel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
}

.carousel-track {
  position: relative;
  width: 320px;
  height: 500px;
  perspective: 1400px;
  margin: 0 auto;
}

/* Glow effect behind active card */
.carousel-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: carouselGlow 4s ease-in-out infinite;
}

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

.success-card-3d {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  height: 500px;
  margin-left: -160px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  z-index: 1;
}

.success-card-3d.is-active {
  transform: rotateY(0deg) translateX(0) translateZ(0) scale(1);
  opacity: 1;
  z-index: 10;
}

.success-card-3d.is-prev {
  transform: rotateY(35deg) translateX(-160px) translateZ(-120px) scale(0.82);
  opacity: 0.15;
  filter: brightness(0.4) blur(1px);
  z-index: 5;
}

.success-card-3d.is-next {
  transform: rotateY(-35deg) translateX(160px) translateZ(-120px) scale(0.82);
  opacity: 0.15;
  filter: brightness(0.4) blur(1px);
  z-index: 5;
}

.success-card-3d.is-hidden {
  transform: rotateY(0deg) translateZ(-200px) scale(0.7);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.card-glass {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
}

.card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.card-avatar-wrap {
  position: relative;
  margin-bottom: 16px;
}

.card-avatar {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.card-flag-corner {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  z-index: 2;
  line-height: 0;
}

.card-name {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}

.card-creds {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.card-passed-block {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 7px 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FFD700, #F59E0B, #D4A012);
  color: #1A1A1A;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.card-seal-wrap {
  margin-top: auto;
}

.success-seal {
  width: 115px;
  height: 115px;
  animation: sealPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(212, 160, 18, 0.5));
}

@keyframes sealPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: -52px; }
.carousel-next { right: -52px; }

.carousel-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: white;
}

.carousel-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-weight: 500;
  font-family: var(--font-mono);
}

:root.dark .card-glass {
  background: rgba(17, 24, 39, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

:root.dark .card-glass::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
}

:root.dark .card-avatar {
  border-color: rgba(255, 255, 255, 0.2);
}

:root.dark .card-flag-corner {
  border-color: rgba(255, 255, 255, 0.5);
}

:root.dark .carousel-btn {
  background: rgba(17, 24, 39, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

:root.dark .carousel-btn:hover {
  background: rgba(17, 24, 39, 0.8);
}

:root.dark .carousel-dot {
  background: rgba(255, 255, 255, 0.2);
}

:root.dark .carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

:root.dark .carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .carousel-container { max-width: 100%; }
  .carousel-track { width: 100%; height: 500px; }
  .success-card-3d { width: 300px; margin-left: -150px; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
}

@media (max-width: 768px) {
  .carousel-track { width: 100%; height: 480px; }
  .success-card-3d { width: 290px; margin-left: -145px; height: 480px; }
  .card-avatar { width: 110px; height: 110px; }
  .card-name { font-size: 25px; }
  .success-seal { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .carousel-track { height: 460px; }
  .success-card-3d { width: 280px; margin-left: -140px; height: 460px; }
  .card-avatar { width: 100px; height: 100px; }
  .card-name { font-size: 23px; }
  .card-creds { font-size: 13px; }
  .success-seal { width: 90px; height: 90px; }
  .carousel-btn { width: 32px; height: 32px; }
  .carousel-prev { left: 2px; }
  .carousel-next { right: 2px; }
}

/* ============================================
   FLAGS MARQUEE
   ============================================ */
.flags-section {
  background: var(--bg-primary); padding: 40px 0;
  border-bottom: 1px solid var(--border-light); overflow: hidden;
}
.flags-label {
  text-align: center; font-size: 0.875rem; color: var(--text-muted);
  font-weight: 500; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.flags-track {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.flag-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.flag-icon {
  width: 48px; height: 32px; border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1;
}
.flag-name { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

/* ============================================
   BENTO GRID (SERVICES)
   ============================================ */
.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.bento-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 32px; transition: all var(--transition-fast);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 43, 70, 0.06), 0 1px 4px rgba(15, 43, 70, 0.04);
}
.bento-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 43, 70, 0.12), 0 2px 8px rgba(13, 148, 136, 0.08);
  background: rgba(255, 255, 255, 0.85);
  border-color: #FFFFFF;
}
.bento-card-1 { grid-column: span 12; }
.bento-card-2 { grid-column: span 6; }
.bento-card-3 { grid-column: span 6; }
.bento-card-4 { grid-column: span 12; }

.bento-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bento-icon-navy { background: rgba(15, 43, 70, 0.1); }
.bento-icon-navy svg { width: 24px; height: 24px; stroke: var(--accent-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bento-icon-teal { background: rgba(13, 148, 136, 0.1); }
.bento-icon-teal svg { width: 24px; height: 24px; stroke: var(--accent-secondary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bento-icon-muted { background: rgba(107, 114, 128, 0.1); }
.bento-icon-muted svg { width: 24px; height: 24px; stroke: var(--text-muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.bento-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px; line-height: 1.3;
}
.bento-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.bento-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem;
  font-weight: 600; color: var(--accent-secondary); text-decoration: none;
  transition: gap 0.2s ease;
}
.bento-link:hover { gap: 12px; }
.bento-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.bento-badge { display: inline-block; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; margin-bottom: 16px; }
.bento-badge-new { background: rgba(13, 148, 136, 0.1); color: var(--accent-secondary); }
.bento-badge-soon { background: rgba(245, 158, 11, 0.1); color: var(--accent-warm); }
.bento-card-comingsoon { opacity: 0.6; filter: grayscale(0.5); }

:root.dark .bento-card {
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
:root.dark .bento-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}
:root.dark .bento-card:hover {
  background: rgba(31, 41, 55, 0.8);
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(13, 148, 136, 0.08);
}

.services-section { background: var(--bg-secondary); }

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  background: var(--bg-secondary); padding: 96px 0;
  position: relative; overflow: hidden;
}
.philosophy-content {
  position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center;
}
.philosophy-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.4; margin-bottom: 24px;
}
.philosophy-text {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 32px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-primary); }
.testimonials-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
  padding: 8px 0 16px;
  scroll-behavior: smooth;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 32px;
  transition: all var(--transition-fast);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote { font-style: italic; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.testimonial-score { color: var(--accent-success); font-size: 0.8rem; font-weight: 600; }
.testimonial-meta { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-nav { display: flex; gap: 12px; justify-content: center; margin-top: 16px; }
.testimonial-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(15, 43, 70, 0.08); border: 1px solid rgba(15, 43, 70, 0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; color: var(--accent-primary);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.testimonial-nav button:hover { background: rgba(15, 43, 70, 0.15); }
.testimonial-nav button:active { transform: scale(0.92); }

/* ============================================
   MENTOR SECTION
   ============================================ */
.mentor-section { background: var(--bg-secondary); }
.mentor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mentor-image-wrapper { position: relative; }
.mentor-image {
  width: 100%; max-width: 520px; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--border-light);
}
.mentor-image img { width: 100%; height: auto; display: block; }

.mentor-float-card {
  position: absolute; padding: 12px 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}
.mentor-float-card .card-icon {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mentor-float-card .card-icon svg { width: 14px; height: 14px; stroke: var(--accent-secondary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mfc-1 { top: -20px; left: -40px; animation-delay: 0s; }
.mfc-3 { bottom: -20px; right: -40px; animation-delay: 2s; }

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

.mentor-content { display: flex; flex-direction: column; gap: 20px; }
.mentor-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mentor-stat {
  text-align: center; padding: 20px;
  background: var(--bg-primary); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.mentor-stat-number {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  color: var(--accent-primary);
}
.mentor-stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

.mentor-quote {
  position: relative; padding: 28px 32px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}
.quote-mark {
  position: absolute; top: 12px; left: 16px;
  width: 40px; height: 40px;
}
.mentor-quote blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--text-primary); line-height: 1.7;
  margin: 0 0 20px; padding-left: 20px;
  border-left: 3px solid var(--accent-secondary);
}
.mentor-signature-wrap { padding-left: 20px; }
.mentor-signature {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 1.75rem; font-weight: 700;
  color: var(--accent-primary);
  line-height: 1.2;
}
.mentor-signature-title {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 4px;
  font-weight: 500; letter-spacing: 0.5px;
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.consultation-section {
  background: var(--accent-primary); padding: 80px 0;
  position: relative; overflow: hidden;
}
.consultation-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 43, 70, 0.95) 0%, rgba(13, 148, 136, 0.3) 100%);
}
.consultation-banner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0;
  width: 100%; max-width: 1200px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.consultation-header {
  padding: 48px 48px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.consultation-tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.2); color: #FCD34D;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.consultation-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px;
}
.consultation-desc { font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); line-height: 1.7; max-width: 700px; margin: 0 auto; }
.consultation-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  flex: 1;
}
.consultation-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 56px; gap: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.consultation-visual {
  position: relative;
  overflow: hidden;
}
.consultation-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.consultation-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.consultation-badge {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--radius-full);
  background: rgba(13, 148, 136, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(13, 148, 136, 0.6);
  color: #5EEAD4; font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.consultation-badge svg { width: 18px; height: 18px; stroke: #5EEAD4; fill: none; stroke-width: 2; }
.consultation-features { display: flex; flex-direction: column; gap: 16px; }
.consultation-features li {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; font-weight: 500; line-height: 1.5;
}
.consultation-features li svg {
  width: 22px; height: 22px; stroke: var(--accent-secondary); fill: none; stroke-width: 2.5; flex-shrink: 0;
}
.consultation-pricing { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.consultation-price-row { display: flex; align-items: center; gap: 12px; }
.price-old { font-size: 1.25rem; color: rgba(255, 255, 255, 0.4); text-decoration: line-through; }
.price-arrow { color: rgba(255, 255, 255, 0.5); font-size: 1.25rem; }
.price-new {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  color: #34D399;
}
.price-save {
  padding: 4px 10px; border-radius: var(--radius-full);
  background: rgba(52, 211, 153, 0.15); color: #34D399;
  font-size: 0.8rem; font-weight: 600;
}
.btn-consultation {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  background: var(--gradient-warm); color: #1A1A1A;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  transition: all var(--transition-fast);
}
.btn-consultation:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4); }
.btn-consultation svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Consultation Dark Mode */
:root.dark .consultation-section {
  background: var(--bg-secondary);
}
:root.dark .consultation-section::before {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}
:root.dark .consultation-banner {
  background: var(--bg-tertiary);
  border-color: var(--border-light);
}
:root.dark .consultation-header {
  border-bottom-color: var(--border-light);
}
:root.dark .consultation-title {
  color: var(--text-primary);
}
:root.dark .consultation-desc {
  color: var(--text-secondary);
}
:root.dark .consultation-content {
  border-right-color: var(--border-light);
}
:root.dark .consultation-features li {
  color: var(--text-primary);
}
:root.dark .price-old {
  color: var(--text-muted);
}
:root.dark .price-arrow {
  color: var(--text-muted);
}
:root.dark .price-new {
  color: var(--accent-success);
}
:root.dark .price-save {
  background: rgba(86, 211, 100, 0.12);
  color: var(--accent-success);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--bg-primary); }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); margin-bottom: 12px;
  overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--accent-secondary); }
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-weight: 600;
  font-size: 1rem; color: var(--text-primary);
  background: var(--bg-primary); transition: background 0.2s ease;
  width: 100%; text-align: left;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1); padding: 0 24px; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-arrow { transition: transform 0.3s ease; font-size: 14px; color: var(--text-secondary); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer-inner { line-height: 1.7; color: var(--text-secondary); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.3;
}
.contact-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.form-input, .form-textarea {
  padding: 12px 16px; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); font-size: 0.95rem;
  font-family: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--bg-primary); color: var(--text-primary);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent-secondary); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.optional { color: var(--text-muted); font-weight: 400; }

:root.dark .form-input,
:root.dark .form-textarea {
  background: #F3F4F6;
  color: #1F2937;
  border-color: #D1D5DB;
}
:root.dark .form-input::placeholder,
:root.dark .form-textarea::placeholder {
  color: #9CA3AF;
}
:root.dark .form-label {
  color: #E5E7EB;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--accent-primary); color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 24px; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s ease; display: block; margin-bottom: 10px; }
.footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.footer-social { display: flex; gap: 16px; margin-top: 25px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--accent-secondary); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col-title { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-brand p { color: rgba(255, 255, 255, 0.8); font-size: 1.08rem; line-height: 1.6; margin-bottom: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: white; }

/* Footer Dark Mode */
:root.dark .footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}
:root.dark .footer::before {
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
:root.dark .footer h4 {
  color: var(--text-primary);
}
:root.dark .footer a {
  color: var(--text-muted);
}
:root.dark .footer a:hover {
  color: var(--text-primary);
}
:root.dark .footer-bottom {
  border-top-color: var(--border-light);
  color: var(--text-muted);
}
:root.dark .footer-social a {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}
:root.dark .footer-social a:hover {
  background: var(--accent-primary);
  color: white;
}
:root.dark .footer-col-title {
  color: var(--text-primary);
}
:root.dark .footer-brand p {
  color: var(--text-secondary);
}
:root.dark .footer-bottom-links a {
  color: var(--text-muted);
}
:root.dark .footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-right { order: 1; }

  .bento-card-1, .bento-card-4 { grid-column: span 12; }
  .bento-card-2, .bento-card-3 { grid-column: span 6; }
  .mentor-grid { grid-template-columns: 1fr; gap: 48px; }
  .mentor-image-wrapper { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .bento-card-2, .bento-card-3 { grid-column: span 12; }

  .mentor-stats { grid-template-columns: 1fr 1fr; }
  .mentor-float-card { display: none; }
  .testimonials-track { scroll-snap-type: none; }
  .testimonial-card { flex: 0 0 280px; scroll-snap-align: none; }
  .testimonial-nav button {
    width: 48px; height: 48px;
    background: rgba(15, 43, 70, 0.1);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Notification Bar Mobile */
  .notification-marquee { display: none; }
  .notification-bar-inner { justify-content: space-between; }
  .notification-bar { padding: 10px 0; }

  /* Mentor Reviews Mobile */
  .mentor-reviews-grid { grid-template-columns: 1fr; }
  .mentor-reviews-section { padding: 64px 0; }
  .mentor-review-trust { flex-direction: column; gap: 24px; }
  .trust-divider { width: 60px; height: 1px; }

  /* Demo Subscribe Mobile */
  .demo-subscribe-card { grid-template-columns: 1fr; padding: 32px; gap: 40px; }
  .demo-subscribe-section { padding: 64px 0; }
  .demo-subscribe-form { flex-direction: column; }
  .demo-subscribe-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .mentor-stats { grid-template-columns: 1fr; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .flags-track { animation: none; }
  .hero-bg { animation: none; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================
   MENTOR REVIEWS SECTION
   ============================================ */
.mentor-reviews-section {
  background: var(--bg-primary);
  padding: 96px 0;
  position: relative;
}
.mentor-reviews-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.mentor-reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.mentor-review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.mentor-review-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.mentor-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-secondary);
}
.mentor-review-card:hover::before { opacity: 1; }
.review-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.review-card-type {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent-secondary);
  background: rgba(13, 148, 136, 0.08);
  padding: 4px 10px; border-radius: var(--radius-full);
}
:root.dark .review-card-type { background: rgba(13, 148, 136, 0.15); }
.review-card-type-industry { color: var(--accent-primary); background: rgba(15, 43, 70, 0.08); }
:root.dark .review-card-type-industry { background: rgba(30, 64, 175, 0.15); }
.review-card-type-mentor { color: var(--accent-warm); background: rgba(245, 158, 11, 0.08); }
:root.dark .review-card-type-mentor { background: rgba(251, 191, 36, 0.15); }
.review-card-type-colleague { color: #8B5CF6; background: rgba(139, 92, 246, 0.08); }
:root.dark .review-card-type-colleague { background: rgba(139, 92, 246, 0.15); }
.review-card-stars { display: flex; gap: 2px; }
.review-card-stars svg { width: 14px; height: 14px; fill: var(--accent-warm); }
.review-card-quote {
  font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary);
  font-style: italic; margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--border-light);
}
.review-card-author { display: flex; align-items: center; gap: 12px; }
.review-author-avatar {
  width: 48px; height: 48px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white; flex-shrink: 0;
  border: 2px solid var(--border-light);
}
.review-avatar-academic { background: linear-gradient(135deg, var(--accent-secondary), #3B82F6); }
.review-avatar-industry { background: linear-gradient(135deg, var(--accent-primary), #3B82F6); }
.review-avatar-mentor { background: linear-gradient(135deg, var(--accent-warm), #F97316); }
.review-avatar-network { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.review-avatar-student { background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); }
.review-author-info { display: flex; flex-direction: column; }
.review-author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.review-author-role { font-size: 0.8rem; color: var(--text-muted); }

/* Trust Bar */
.mentor-review-trust {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-number { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--accent-primary); }
:root.dark .trust-number { color: var(--accent-secondary); }
.trust-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 40px; background: var(--border-light); }

/* ============================================
   DEMO SUBSCRIBE SECTION
   ============================================ */
.demo-subscribe-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--accent-primary);
}
.demo-subscribe-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #1a3a5c 50%, var(--accent-secondary) 100%);
}
.demo-subscribe-card {
  position: relative;
  z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.demo-subscribe-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent-warm);
  background: rgba(245, 158, 11, 0.15);
  padding: 6px 14px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.demo-subscribe-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: white; line-height: 1.3;
  margin-bottom: 12px;
}
.demo-subscribe-subtitle {
  font-size: 1rem; color: rgba(255, 255, 255, 0.8); line-height: 1.7;
  margin-bottom: 28px;
}
.demo-subscribe-form { display: flex; gap: 12px; margin-bottom: 12px; }
.demo-input-wrapper {
  flex: 1; position: relative; display: flex; align-items: center;
}
.demo-input-icon {
  position: absolute; left: 16px; width: 18px; height: 18px;
  color: var(--text-muted); pointer-events: none;
}
.demo-input {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 1px solid var(--border-light); border-radius: var(--radius-full);
  font-size: 0.95rem; font-family: inherit;
  background: var(--bg-primary); color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.demo-input:focus {
  outline: none; border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.demo-input::placeholder { color: var(--text-muted); }
.demo-subscribe-btn {
  flex-shrink: 0; display: flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-cta); color: white;
  border-radius: var(--radius-full); font-size: 0.95rem; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}
.demo-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 43, 70, 0.25);
}
:root.dark .demo-subscribe-btn:hover {
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.35);
}
:root.dark .demo-subscribe-bg {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.demo-btn-arrow { width: 16px; height: 16px; transition: transform 0.2s ease; }
.demo-subscribe-btn:hover .demo-btn-arrow { transform: translateX(3px); }
.demo-subscribe-note { font-size: 0.8rem; color: var(--text-muted); }

/* Demo Visual Side */
.demo-subscribe-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.demo-visual-card {
  width: 100%; max-width: 320px;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}
.demo-visual-card:hover { transform: scale(1.02); }
.demo-play-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}
.demo-visual-card:hover .demo-play-icon { background: rgba(255, 255, 255, 0.3); }
.demo-play-icon svg { width: 28px; height: 28px; margin-left: 3px; }
.demo-visual-label { font-size: 1rem; font-weight: 600; }
.demo-visual-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; opacity: 0.8; }
.demo-visual-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.demo-mini-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 6px 12px; border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}
.demo-mini-badge svg { width: 12px; height: 12px; color: var(--accent-success); }

/* ============================================
   WordPress Compatibility Overrides --- */
.entry-content p { margin-bottom: 1em; }
.entry-content img { max-width: 100%; height: auto; }
.wp-block-button__link { border-radius: var(--radius-full); }
#wpadminbar { position: fixed !important; }

/* Fallback positions when JS hasn't loaded yet */
html.admin-bar .notification-bar { top: 32px !important; }
html.admin-bar .nav { top: calc(32px + 46px) !important; }
html.admin-bar .scroll-progress { top: calc(32px + 46px) !important; }
html.admin-bar .hero { padding-top: calc(var(--nav-height) + 32px + 46px) !important; }
@media (max-width: 782px) {
  html.admin-bar .notification-bar { top: 46px !important; }
  html.admin-bar .nav { top: calc(46px + 46px) !important; }
  html.admin-bar .scroll-progress { top: calc(46px + 46px) !important; }
}

/* Note: JS (adjustNavbarForAdminBar) dynamically sets top positions
   for .nav, .scroll-progress, and .notification-bar based on:
   - WordPress admin bar visibility & height
   - Notification bar visibility & height
   The CSS fallbacks above only apply before JS runs. */

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
  min-height: 70vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 192px 0 152px;
  margin-top: -72px;
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--gradient-hero);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}
.about-hero-particles { position: absolute; inset: 0; z-index: 1; }
.about-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.about-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 600; color: #FFFFFF;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 24px;
}
:root.dark .about-hero-badge {
  background: rgba(22,27,34,0.6); border-color: rgba(48,54,61,0.4);
}
.about-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: #FFFFFF; margin-bottom: 20px;
}
.about-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7;
  color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.about-hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* About Page Hero Buttons (overrides for light-mode buttons) */
.about-hero .hero-btn-ghost {
  background: transparent; color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
}
.about-hero .hero-btn-ghost svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  color: #FFFFFF;
}
.about-hero .hero-btn-ghost:hover {
  border-color: var(--accent-primary); background: var(--accent-primary); color: white;
  transform: translateY(-2px);
}
.about-cta .hero-btn-ghost {
  background: transparent; color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  padding: 14px 28px;
}
.about-cta .hero-btn-ghost:hover {
  background: var(--accent-primary); color: #FFFFFF;
  transform: translateY(-2px);
}
.about-hero .hero-btn-primary,
.about-cta .hero-btn-primary {
  background: var(--gradient-cta); color: white;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  padding: 14px 28px;
}
.about-hero .hero-btn-primary:hover,
.about-cta .hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}

/* About Founder */
.about-founder { padding: 96px 0; background: var(--bg-secondary); }
.about-founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-founder-visual { position: relative; }
.about-founder-image-wrapper { position: relative; }
.about-founder-image {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-xl);
  background: var(--bg-tertiary); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-founder-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}
.about-founder-placeholder svg { width: 80px; height: 80px; color: var(--text-muted); opacity: 0.4; }
.about-founder-float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}
.about-founder-float-card:hover { transform: translateY(-4px); }
.float-1 { bottom: 20%; left: -20px; }
.float-2 { top: 15%; right: -20px; }
.float-3 { bottom: 5%; right: 10%; }
.float-card-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-icon svg { width: 18px; height: 18px; color: white; }
.float-card-text { display: flex; flex-direction: column; }
.float-card-text strong { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.float-card-text span { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.2; }

/* Founder Content */
.about-founder-content { padding-top: 20px; }
.about-section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 12px;
}
:root.dark .about-section-label { color: var(--accent-primary); }
.about-founder-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 20px;
}
.about-founder-bio {
  font-size: 1rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 16px;
}
.about-founder-credentials { margin: 32px 0; }
.about-founder-credentials h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 16px;
}
.about-credential-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.about-credential-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  background: var(--bg-primary); border: 1px solid var(--border-light);
  font-size: 0.9rem; color: var(--text-primary);
}
.about-credential-item svg { width: 18px; height: 18px; color: var(--accent-success); flex-shrink: 0; }
.about-founder-quote {
  margin-top: 32px; padding: 24px; border-left: 4px solid var(--accent-primary);
  background: var(--bg-primary); border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-founder-quote blockquote {
  font-family: var(--font-accent); font-size: 1.125rem; font-weight: 500;
  color: var(--text-primary); line-height: 1.6; font-style: italic;
}
.about-founder-quote cite {
  display: block; margin-top: 8px; font-size: 0.875rem;
  color: var(--text-secondary); font-style: normal;
}

/* About Mission */
.about-mission { padding: 96px 0; background: var(--bg-primary); }
.about-mission-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.about-mission-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.about-mission-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary);
}
.about-mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.about-mission-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.about-mission-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}
.about-mission-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.about-mission-icon svg { width: 24px; height: 24px; color: white; }
.about-mission-card h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 12px;
}
.about-mission-card p {
  font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary);
}

/* About Traction */
.about-traction { padding: 80px 0; background: var(--bg-secondary); }
.about-traction-header { text-align: center; margin-bottom: 48px; }
.about-traction-header h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--text-primary);
}
.about-traction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.about-traction-stat { text-align: center; }
.traction-number {
  font-family: var(--font-mono); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1;
  background: var(--gradient-cta); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.traction-label {
  font-size: 0.9rem; color: var(--text-secondary); font-weight: 500;
}

/* About Philosophy */
.about-philosophy { padding: 120px 0; background: var(--bg-primary); }
:root.dark .about-philosophy { background: var(--bg-primary); }
.about-philosophy-content { max-width: 960px; margin: 0 auto; text-align: center; }
.about-philosophy-content h2 {
  font-family: var(--font-accent); font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.03em;
  color: var(--text-primary); margin-bottom: 20px;
}
.about-philosophy-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.about-philosophy-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; }

/* Modern comparison cards */
.about-philosophy-bad, .about-philosophy-good {
  position: relative; padding: 0; border-radius: var(--radius-xl);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-philosophy-bad:hover, .about-philosophy-good:hover {
  transform: translateY(-4px);
}
.about-philosophy-bad { box-shadow: 0 2px 12px rgba(239,68,68,0.06); }
.about-philosophy-bad:hover { box-shadow: 0 8px 30px rgba(239,68,68,0.12); }
.about-philosophy-good { box-shadow: 0 2px 12px rgba(16,185,129,0.06); }
.about-philosophy-good:hover { box-shadow: 0 8px 30px rgba(16,185,129,0.12); }

/* Card header */
.about-philosophy-bad-header, .about-philosophy-good-header {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border-light);
}
.about-philosophy-bad-header { background: rgba(239,68,68,0.04); }
.about-philosophy-good-header { background: rgba(16,185,129,0.04); }
.philosophy-icon-bad, .philosophy-icon-good {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.philosophy-icon-bad { background: rgba(239, 68, 68, 0.1); }
.philosophy-icon-bad svg { width: 22px; height: 22px; color: var(--accent-danger); }
.philosophy-icon-good { background: rgba(16, 185, 129, 0.1); }
.philosophy-icon-good svg { width: 22px; height: 22px; color: var(--accent-success); }
.about-philosophy-bad h3, .about-philosophy-good h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin: 0; letter-spacing: -0.01em;
}

/* Card body */
.about-philosophy-bad-body, .about-philosophy-good-body {
  padding: 20px 28px 28px;
}
.about-philosophy-bad ul, .about-philosophy-good ul { list-style: none; margin: 0; padding: 0; }
.about-philosophy-bad li, .about-philosophy-good li {
  padding: 12px 0; font-size: 0.95rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: flex-start; gap: 12px; line-height: 1.5;
}
.about-philosophy-bad li:last-child, .about-philosophy-good li:last-child { border-bottom: none; }
.about-philosophy-bad li::before { content: '✕'; color: var(--accent-danger); font-weight: 700; flex-shrink: 0; font-size: 0.85rem; margin-top: 1px; }
.about-philosophy-good li::before { content: '✓'; color: var(--accent-success); font-weight: 700; flex-shrink: 0; font-size: 0.85rem; margin-top: 1px; }

/* About Timeline */
.about-timeline { padding: 96px 0; background: var(--bg-secondary); position: relative; overflow: visible; }
.about-timeline-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.about-timeline-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}

/* Diagonal track */
.about-timeline-diagonal {
  position: relative; max-width: 800px; margin: 0 auto;
  padding: 40px 0;
}

/* SVG dotted path */
.about-timeline-path {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* Each step */
.about-timeline-item {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  margin-bottom: 48px;
}
.about-timeline-item:last-child { margin-bottom: 0; }

/* Alternating sides */
.about-timeline-item:nth-child(odd) {
  flex-direction: row;
}
.about-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Center node on the curve */
.about-timeline-node {
  flex-shrink: 0; width: 48px; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.about-timeline-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-secondary); border: 3px solid var(--accent-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.about-timeline-dot:hover {
  transform: scale(1.2);
}
.about-timeline-dot-inner {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gradient-cta);
}
.about-timeline-dot-final {
  width: 36px; height: 36px;
  border-width: 4px;
}
.about-timeline-dot-final .about-timeline-dot-inner {
  width: 16px; height: 16px;
}

/* Pill card */
.about-timeline-pill {
  flex: 1; padding: 24px 28px; border-radius: 48px;
  background: var(--bg-primary); border: 2px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-timeline-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.about-timeline-pill-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.about-timeline-pill-icon svg {
  width: 22px; height: 22px; color: #FFFFFF;
}

.about-timeline-pill-body { }
.about-timeline-pill-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-primary);
  margin-bottom: 6px;
}
.about-timeline-pill-body h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.3;
}
.about-timeline-pill-body p {
  font-size: 0.875rem; line-height: 1.6; color: var(--text-secondary);
}

/* Final pill — gradient filled */
.about-timeline-pill-final {
  background: var(--gradient-cta); border-color: transparent;
  box-shadow: 0 8px 32px rgba(13,148,136,0.25);
}
.about-timeline-pill-final .about-timeline-pill-icon {
  background: rgba(255,255,255,0.2);
}
.about-timeline-pill-final .about-timeline-pill-label { color: rgba(255,255,255,0.85); }
.about-timeline-pill-final h3 { color: #FFFFFF; }
.about-timeline-pill-final p { color: rgba(255,255,255,0.8); }

/* ============================================
   MENTOR PAGE
   ============================================ */

/* Mentor Hero */
.mentor-hero {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-hero); position: relative; overflow: hidden;
  padding: 192px 0 152px;
  margin-top: -72px;
}
.mentor-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.15) 0%, transparent 60%);
}
:root.dark .mentor-hero-bg {
  background: radial-gradient(ellipse at 30% 50%, rgba(21,101,192,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(57,210,192,0.15) 0%, transparent 60%);
}
.mentor-hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.mentor-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.mentor-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
  padding: 8px 20px; font-size: 0.8rem; font-weight: 600;
  color: white; margin-bottom: 24px;
}
.mentor-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-primary);
}
:root.dark .mentor-hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.mentor-hero-title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800; color: #FFFFFF; margin-bottom: 16px; line-height: 1.15;
}
.mentor-hero-subtitle {
  font-size: 1.25rem; font-weight: 600; color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}
.mentor-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 24px; max-width: 650px; margin-left: auto; margin-right: auto;
}
.mentor-hero-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mentor-tag {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
  padding: 6px 16px; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* Mentor Bio */
.mentor-bio { padding: 96px 0; background: var(--bg-primary); }
.mentor-bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.mentor-bio-visual { position: relative; }
.mentor-bio-image-wrapper { position: relative; }
.mentor-bio-image {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-xl);
  background: var(--bg-tertiary); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mentor-bio-content { padding-top: 20px; }
.mentor-section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 12px;
}
:root.dark .mentor-section-label { color: var(--accent-primary); }
.mentor-bio-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-primary); margin-bottom: 20px; line-height: 1.2;
}
.mentor-bio-text {
  font-size: 1rem; line-height: 1.8; color: var(--text-secondary);
  margin-bottom: 16px;
}
:root.dark .mentor-bio-title { color: var(--text-primary); }
:root.dark .mentor-bio-text { color: var(--text-secondary); }

/* Mentor Credentials */
.mentor-credentials { padding: 96px 0; background: var(--bg-secondary); }
.mentor-credentials-header { text-align: center; margin-bottom: 48px; }
.mentor-credentials-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-primary); margin-bottom: 12px;
}
.mentor-credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mentor-credential-card {
  padding: 32px 28px; border-radius: var(--radius-xl);
  background: var(--bg-primary); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.mentor-credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mentor-credential-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mentor-credential-icon svg { width: 28px; height: 28px; color: white; }
.mentor-credential-card h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.mentor-credential-card p {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
}
:root.dark .mentor-credential-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .mentor-credential-card h3 { color: var(--text-primary); }
:root.dark .mentor-credential-card p { color: var(--text-secondary); }

/* Mentor Focus Areas */
.mentor-focus { padding: 96px 0; background: var(--bg-primary); }
.mentor-focus-content { max-width: 900px; margin: 0 auto; text-align: center; }
.mentor-focus-content h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-primary); margin-bottom: 16px;
}
.mentor-focus-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 48px;
}
.mentor-focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: left; }
.mentor-focus-item {
  padding: 32px; border-radius: var(--radius-xl);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.mentor-focus-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.mentor-focus-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: var(--gradient-cta); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.mentor-focus-item h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.mentor-focus-item p {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
}
:root.dark .mentor-focus-item { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .mentor-focus-item h3 { color: var(--text-primary); }
:root.dark .mentor-focus-item p { color: var(--text-secondary); }

/* Mentor Philosophy */
.mentor-philosophy { padding: 96px 0; background: var(--bg-secondary); }
.mentor-philosophy-content { max-width: 900px; margin: 0 auto; text-align: center; }
.mentor-philosophy-content h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text-primary); margin-bottom: 16px;
}
.mentor-philosophy-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 48px;
}
.mentor-philosophy-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: left; }
.mentor-value-item {
  padding: 28px; border-radius: var(--radius-xl);
  background: var(--bg-primary); border: 1px solid var(--border-light);
  transition: transform var(--transition-base);
}
.mentor-value-item:hover { transform: translateY(-3px); }
.mentor-value-icon {
  width: 48px; height: 48px; border-radius: var(--radius-lg);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mentor-value-icon svg { width: 24px; height: 24px; color: white; }
.mentor-value-item h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.mentor-value-item p {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
}
:root.dark .mentor-value-item { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .mentor-value-item h3 { color: var(--text-primary); }
:root.dark .mentor-value-item p { color: var(--text-secondary); }

/* Mentor Quote */
.mentor-quote {
  position: relative; padding: 28px 32px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}
.quote-mark {
  position: absolute; top: 12px; left: 16px;
  width: 40px; height: 40px;
}
.mentor-quote blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--text-primary); line-height: 1.7;
  margin: 0 0 20px; padding-left: 20px;
  border-left: 3px solid var(--accent-secondary);
}

/* Mentor Page Particles */
.mentor-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: mentorParticleFloat linear infinite;
}
:root.dark .mentor-particle { background: rgba(57,210,192,0.12); }
@keyframes mentorParticleFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}

/* Mentor Page Responsive */
@media (max-width: 1024px) {
  .mentor-bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .mentor-bio-image { max-width: 500px; margin: 0 auto; }
  .mentor-credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mentor-hero { min-height: 60vh; padding: 100px 0 60px; }
  .mentor-hero-title { font-size: 2rem; }
  .mentor-hero-tags { flex-direction: column; align-items: center; }
  .mentor-bio { padding: 64px 0; }
  .mentor-credentials { padding: 64px 0; }
  .mentor-credentials-grid { grid-template-columns: 1fr; }
  .mentor-focus { padding: 64px 0; }
  .mentor-focus-grid { grid-template-columns: 1fr; }
  .mentor-philosophy { padding: 64px 0; }
  .mentor-philosophy-values { grid-template-columns: 1fr; }
  .mentor-quote { padding: 64px 0; }

  /* About Philosophy Responsive */
  .about-philosophy { padding: 80px 0; }
  .about-philosophy-comparison { grid-template-columns: 1fr; gap: 20px; }
  .about-philosophy-desc { margin-bottom: 40px; }
  .about-philosophy-bad-header, .about-philosophy-good-header { padding: 20px 24px 16px; }
  .about-philosophy-bad-body, .about-philosophy-good-body { padding: 16px 24px 24px; }
}

/* About CTA — Legacy styles, no longer used (replaced by course-cta Universal CTA Block) */

/* Dark Mode About Overrides */
:root.dark .about-hero-badge { color: var(--text-primary); }
:root.dark .about-hero-title { color: #FFFFFF; }
:root.dark .about-hero-subtitle { color: rgba(255,255,255,0.85); }
:root.dark .about-hero-cta .hero-btn-ghost { color: var(--text-primary); border-color: var(--border-light); }
:root.dark .about-founder-float-card { background: var(--glass-bg); border-color: var(--glass-border); }
:root.dark .float-card-text strong { color: var(--text-primary); }
:root.dark .float-card-text span { color: var(--text-secondary); }
:root.dark .about-founder-title { color: var(--text-primary); }
:root.dark .about-founder-bio { color: var(--text-secondary); }
:root.dark .about-credential-item { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .about-credential-item span { color: var(--text-primary); }
:root.dark .about-founder-quote { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .about-founder-quote blockquote { color: var(--text-primary); }
:root.dark .about-founder-quote cite { color: var(--text-secondary); }
:root.dark .about-mission-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .about-mission-card h3 { color: var(--text-primary); }
:root.dark .about-mission-card p { color: var(--text-secondary); }
:root.dark .traction-label { color: var(--text-secondary); }
:root.dark .about-philosophy-content h2 { color: var(--text-primary); }
:root.dark .about-philosophy-desc { color: var(--text-secondary); }
:root.dark .about-philosophy-bad, :root.dark .about-philosophy-good { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .about-philosophy-bad-header { background: rgba(239,68,68,0.08); }
:root.dark .about-philosophy-good-header { background: rgba(16,185,129,0.08); }
:root.dark .about-philosophy-bad h3, :root.dark .about-philosophy-good h3 { color: var(--text-primary); }
:root.dark .about-philosophy-bad li, :root.dark .about-philosophy-good li { color: var(--text-secondary); border-color: var(--border-light); }
:root.dark .about-timeline-dot { border-color: var(--accent-primary); background: var(--bg-tertiary); }
:root.dark .about-timeline-pill { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .about-timeline-pill-body h3 { color: var(--text-primary); }
:root.dark .about-timeline-pill-body p { color: var(--text-secondary); }
/* About CTA dark mode handled by course-cta :root.dark overrides below */

/* About Page Particles */
.about-hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.about-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: aboutParticleFloat linear infinite;
}
:root.dark .about-particle { background: rgba(57,210,192,0.12); }
@keyframes aboutParticleFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-founder-image { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .about-hero { min-height: 60vh; padding: 100px 0 60px; }
  .about-hero-title { font-size: 2rem; }
  .about-hero-cta { flex-direction: column; align-items: center; }
  .about-founder { padding: 64px 0; }
  .about-mission { padding: 64px 0; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-traction-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-philosophy-comparison { grid-template-columns: 1fr; }
  .about-timeline-item { flex-direction: column !important; align-items: flex-start !important; }
  .about-timeline-node { width: auto !important; margin-bottom: 12px; }
  .about-timeline-pill { border-radius: 32px; }
  .about-timeline-item:not(:last-child) { margin-bottom: 32px; }
  .about-timeline-path { display: none; }
  .about-timeline { padding: 64px 0; }
  /* About CTA mobile handled by course-cta responsive styles below */
}

@media (max-width: 480px) {
  .about-traction-grid { grid-template-columns: 1fr; }
  .traction-number { font-size: 2.5rem; }
}

/* ============================================
   MCQ MASTERY COURSE PAGE
   ============================================ */

/* Course Hero */
.course-hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  overflow: hidden; padding: 192px 0 152px;
  margin-top: -72px;
}
.course-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  animation: heroGradientShift 12s ease infinite;
  background-size: 200% 200%;
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.course-hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.course-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: courseParticleFloat linear infinite;
}
@keyframes courseParticleFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}
.course-hero-content { position: relative; z-index: 2; text-align: center; }
.course-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; font-weight: 600; color: white;
  margin-bottom: 24px;
}
.course-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.5);
}
.course-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: white; margin-bottom: 20px;
}
.course-hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,0.85);
  line-height: 1.6; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}

/* Course Hero Stats */
.course-hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.stat-number {
  font-family: var(--font-mono); font-size: 2.5rem; font-weight: 700;
  color: white; line-height: 1;
}
.stat-label {
  font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,0.2);
}

/* Course Hero CTA */
.course-hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.course-page-ghost {
  background: transparent; color: white;
  border: 2px solid white; padding: 14px 28px;
}
.course-page-ghost:hover {
  background: white; color: #0F2B46;
  transform: translateY(-2px);
}

/* Course Features */
.course-features { background: var(--bg-primary); }
.course-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.course-feature-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.course-feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--accent-secondary);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 20px;
}
.feature-title {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
}
.course-features-cta { text-align: center; }

/* Course Curriculum */
.course-curriculum { background: var(--bg-secondary); }
.curriculum-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.curriculum-item {
  padding: 24px; border-radius: var(--radius-md);
  background: var(--bg-elevated); border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.curriculum-item:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}
.curriculum-number {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  color: var(--accent-secondary); letter-spacing: 0.05em;
}
.curriculum-title {
  font-size: 1rem; font-weight: 700; color: var(--text-primary);
  margin: 8px 0 6px;
}
.curriculum-desc {
  font-size: 0.85rem; line-height: 1.5; color: var(--text-secondary);
}
.course-curriculum-cta { text-align: center; }

/* Course Why */
.course-why { background: var(--bg-primary); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  text-align: center; transition: all var(--transition-base);
}
.why-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(15,43,70,0.06); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--accent-primary);
}
:root.dark .why-icon { background: rgba(30,64,175,0.15); }
.why-title {
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
}

/* Course Honest */
.course-honest { background: var(--bg-secondary); }
/* Light mode only: blue background for Honest Details section */
:root:not(.dark) .course-honest { background: var(--accent-primary); }
:root:not(.dark) .course-honest .section-label, :root:not(.dark) .course-honest .section-title, :root:not(.dark) .course-honest .section-subtitle {
  color: white;
}
:root:not(.dark) .course-honest .section-label { opacity: 0.85; }
.honest-list { display: flex; flex-direction: column; gap: 24px; }
.honest-item {
  padding: 28px 32px; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-primary);
}
.honest-item:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
:root:not(.dark) .honest-item {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
:root:not(.dark) .honest-item:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25);
}
.honest-number {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  color: var(--accent-primary); letter-spacing: 0.05em;
}
:root:not(.dark) .honest-number {
  color: var(--accent-secondary);
}
.honest-title {
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  margin: 8px 0 10px;
}
:root:not(.dark) .honest-title {
  color: white;
}
.honest-desc {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
}
:root:not(.dark) .honest-desc {
  color: rgba(255,255,255,0.8);
}

/* Course Plans */
.course-plans { background: var(--bg-primary); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 24px;
}
.plan-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--border-light);
  text-align: center; position: relative; transition: all var(--transition-base);
}
.plan-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.plan-card-featured {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: var(--radius-full);
  background: var(--gradient-cta); color: white;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.plan-header { margin-bottom: 16px; }
.plan-name {
  font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px;
}
.plan-tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--bg-secondary); color: var(--accent-primary);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.plan-desc {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary);
  margin-bottom: 24px;
}
.plan-features {
  list-style: none; padding: 0; margin: 0 0 28px; text-align: left;
}
.plan-features li {
  padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
}
.plan-features li::before {
  content: '✓'; color: var(--accent-success); font-weight: 700; flex-shrink: 0;
}
.plan-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
.plan-btn-outline {
  background: transparent; color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}
.plan-btn-outline:hover {
  background: var(--accent-primary); color: white;
}
.plans-note {
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
  font-style: italic;
}

/* Course Testimonials */
.course-testimonials { background: var(--bg-secondary); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-quote {
  font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-cta); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; }
.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.testimonial-role { font-size: 0.8rem; color: var(--text-secondary); }

/* Course FAQ */
.course-faq { background: var(--bg-primary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--text-primary);
  text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--accent-primary); }
.faq-arrow { flex-shrink: 0; transition: transform var(--transition-base); color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--accent-primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--transition-base);
}
.faq-answer p {
  padding-bottom: 20px; font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary);
}

/* Course Mentor */
.course-mentor { background: var(--bg-secondary); }
.mentor-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.mentor-image-wrapper { max-width: 520px; }
.mentor-image {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.mentor-content .section-title { margin-bottom: 20px; }
.mentor-bio {
  font-size: 1rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 16px;
}
.mentor-cta { margin-top: 24px; }

/* Course CTA */
.course-cta { background: var(--bg-primary); }
.course-cta-card {
  width: 100%; text-align: center;
  padding: 64px 48px; border-radius: var(--radius-xl);
  background: var(--gradient-hero); color: white;
}
.course-cta-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: white; margin-bottom: 16px;
}
.course-cta-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 32px;
}
.course-cta-note {
  margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
/* CTA button: white glassmorphism on gradient card */
.course-cta .hero-btn-primary {
  background: rgba(255,255,255,0.8); color: var(--accent-primary);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.course-cta .hero-btn-primary:hover {
  background: white; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* Two-button layout: primary + ghost side by side */
.course-cta-buttons {
  display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
}
/* Ghost button on gradient CTA card */
.course-cta .hero-btn-ghost {
  color: white; border-color: rgba(255,255,255,0.6);
  background: transparent;
}
.course-cta .hero-btn-ghost:hover {
  background: rgba(255,255,255,0.15); border-color: white;
}

/* Dark Mode Course Overrides */
:root.dark .course-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .course-hero-bg {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .course-hero-title { color: white; }
:root.dark .course-hero-subtitle { color: rgba(255,255,255,0.8); }
:root.dark .course-hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
:root.dark .stat-number { color: white; }
:root.dark .stat-label { color: rgba(255,255,255,0.6); }
:root.dark .stat-divider { background: rgba(255,255,255,0.15); }
:root.dark .course-feature-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .course-feature-card:hover { border-color: var(--accent-secondary); }
:root.dark .feature-title { color: var(--text-primary); }
:root.dark .feature-desc { color: var(--text-secondary); }
:root.dark .curriculum-item { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .curriculum-title { color: var(--text-primary); }
:root.dark .curriculum-desc { color: var(--text-secondary); }
:root.dark .why-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .why-title { color: var(--text-primary); }
:root.dark .why-desc { color: var(--text-secondary); }
:root.dark .honest-item { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .honest-title { color: var(--text-primary); }
:root.dark .honest-desc { color: var(--text-secondary); }
:root.dark .plan-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .plan-name { color: var(--text-primary); }
:root.dark .plan-desc { color: var(--text-secondary); }
:root.dark .plan-features li { border-color: var(--border-light); color: var(--text-secondary); }
:root.dark .plan-tag { background: var(--bg-secondary); color: var(--accent-primary); }
:root.dark .testimonial-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .testimonial-quote { color: var(--text-secondary); }
:root.dark .testimonial-name { color: var(--text-primary); }
:root.dark .testimonial-role { color: var(--text-secondary); }
:root.dark .faq-question { color: var(--text-primary); }
:root.dark .faq-answer p { color: var(--text-secondary); }
:root.dark .mentor-image { background: var(--bg-tertiary); }
:root.dark .mentor-content .section-title { color: var(--text-primary); }
:root.dark .mentor-bio { color: var(--text-secondary); }
:root.dark .course-cta-card {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .course-cta-title { color: white; }
:root.dark .course-cta-subtitle { color: rgba(255,255,255,0.8); }
:root.dark .course-cta-note { color: rgba(255,255,255,0.5); }
:root.dark .course-page-ghost { color: white; border-color: white; }
:root.dark .course-page-ghost:hover { color: #0F172A; background: white; }

/* ============================================
   VERIFY ENROLLMENT PAGE
   ============================================ */

/* Verify Hero */
.verify-hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  overflow: hidden; padding: 192px 0 152px;
  margin-top: -72px;
}
.verify-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  animation: heroGradientShift 12s ease infinite;
  background-size: 200% 200%;
}
.verify-hero-content { position: relative; z-index: 2; text-align: center; }
.verify-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; font-weight: 600; color: white;
  margin-bottom: 24px;
}
.verify-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #F59E0B; box-shadow: 0 0 8px rgba(245,158,11,0.5);
}
.verify-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: white; margin-bottom: 16px;
}
.verify-hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,0.85);
  line-height: 1.6; max-width: 600px; margin: 0 auto;
}

/* Verify Form Section */
.verify-form-section { background: var(--bg-primary); }
.verify-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}

/* Verify Info */
.verify-info-title {
  font-size: 1.75rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 16px;
}
.verify-info-desc {
  font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary);
  margin-bottom: 24px;
}
.verify-reasons { list-style: none; padding: 0; margin: 0 0 32px; }
.verify-reason-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; font-size: 0.95rem; color: var(--text-secondary);
}
.verify-check { color: var(--accent-success); flex-shrink: 0; margin-top: 2px; }
.verify-trust {
  display: flex; align-items: center; gap: 10px;
  padding: 16px; border-radius: var(--radius-md);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  font-size: 0.85rem; color: var(--text-secondary);
}
.verify-trust svg { color: var(--accent-primary); flex-shrink: 0; }
.verify-trust a { color: var(--accent-primary); text-decoration: underline; }

/* Verify Form Wrapper */
.verify-form-wrapper {
  padding: 40px; border-radius: var(--radius-xl);
  background: var(--bg-elevated); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}
.verify-form-header { margin-bottom: 28px; }
.verify-form-title {
  font-size: 1.5rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 8px;
}
.verify-form-subtitle {
  font-size: 0.9rem; color: var(--text-secondary);
}

/* Verify Alerts */
.verify-alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; border-radius: var(--radius-md);
  margin-bottom: 24px; font-size: 0.9rem;
}
.verify-alert svg { flex-shrink: 0; margin-top: 2px; }
.verify-alert-success {
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  color: #059669;
}
.verify-alert-success svg { color: #10B981; }
:root.dark .verify-alert-success { color: #6EE7B7; }
.verify-alert-error {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  color: #DC2626;
}
.verify-alert-error svg { color: #EF4444; }
:root.dark .verify-alert-error { color: #FCA5A5; }

/* Verify Form Fields */
.verify-fieldset {
  border: none; padding: 0; margin: 0 0 28px;
}
.verify-fieldset-title {
  font-size: 1rem; font-weight: 700; color: var(--accent-primary);
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-primary);
  display: inline-block;
}
.verify-fieldset-desc {
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 16px; line-height: 1.5;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); font-size: 0.9rem;
  background: var(--bg-primary); color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(15,43,70,0.08);
}
:root.dark .form-group input,
:root.dark .form-group select,
:root.dark .form-group textarea {
  background: var(--bg-tertiary); border-color: var(--border-light);
  color: var(--text-primary);
}
:root.dark .form-group input:focus,
:root.dark .form-group select:focus,
:root.dark .form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.15);
}
.form-hint {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 4px;
}
.form-group input[type="file"] {
  padding: 8px; font-size: 0.85rem;
}

/* Form Submit */
.form-submit { text-align: center; }
.verify-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border: none; border-radius: var(--radius-full);
  background: var(--gradient-cta); color: white;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-body);
}
.verify-submit-btn:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.verify-submit-btn:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}
.spinner {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-terms {
  margin-top: 16px; font-size: 0.8rem; color: var(--text-muted);
}
.form-terms a { color: var(--accent-primary); text-decoration: underline; }

/* Phone Input Group */
.phone-input-group {
  display: flex; gap: 8px; align-items: center;
}
.phone-code {
  width: 90px; flex-shrink: 0; text-align: center;
  background: var(--bg-secondary); color: var(--text-secondary);
  border: 1px solid var(--border-light); border-radius: 8px;
  padding: 12px 10px; font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em; cursor: default; user-select: none;
}
.phone-code:focus { outline: none; border-color: var(--accent-primary); }
.phone-input-group #verify_phone { flex: 1; }

/* Sign-In Link Below Submit */
.form-signin-link {
  margin-top: 12px; font-size: 0.9rem; color: var(--text-secondary);
  text-align: center;
}
.form-signin-link a {
  color: var(--accent-primary); font-weight: 600;
  text-decoration: none; transition: color 0.2s ease;
}
.form-signin-link a:hover { color: var(--accent-hover); text-decoration: underline; }

/* Dark Mode Verify Overrides */
:root.dark .verify-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .verify-hero-bg {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .verify-hero-title { color: white; }
:root.dark .verify-hero-subtitle { color: rgba(255,255,255,0.8); }
:root.dark .verify-hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
:root.dark .verify-form-wrapper { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .verify-form-title { color: var(--text-primary); }
:root.dark .verify-form-subtitle { color: var(--text-secondary); }
:root.dark .verify-info-title { color: var(--text-primary); }
:root.dark .verify-info-desc { color: var(--text-secondary); }
:root.dark .verify-reason-item { color: var(--text-secondary); }
:root.dark .verify-trust { background: var(--bg-tertiary); border-color: var(--border-light); }

/* ============================================
   TERMS & CONDITIONS PAGE
   ============================================ */

/* Terms Hero */
.terms-hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  overflow: hidden; padding: 192px 0 152px;
  margin-top: -72px;
}
.terms-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  animation: heroGradientShift 12s ease infinite;
  background-size: 200% 200%;
}
.terms-hero-content { position: relative; z-index: 2; text-align: center; }
.terms-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; font-weight: 600; color: white;
  margin-bottom: 24px;
}
.terms-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-warm); box-shadow: 0 0 8px rgba(245,158,11,0.5);
}
.terms-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: white; margin-bottom: 12px;
}
.terms-hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.7);
}

/* Terms Content */
.terms-content { background: var(--bg-primary); }
.terms-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
}

/* Terms Sidebar */
.terms-sidebar { position: sticky; top: 100px; align-self: start; }
.terms-nav {
  padding: 20px; border-radius: var(--radius-lg);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
}
.terms-nav-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted);
  margin-bottom: 16px;
}
.terms-nav-list { list-style: none; padding: 0; margin: 0; }
.terms-nav-list li { margin-bottom: 4px; }
.terms-nav-list a {
  display: block; padding: 6px 12px; font-size: 0.85rem;
  color: var(--text-secondary); text-decoration: none;
  border-radius: var(--radius-sm); border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}
.terms-nav-list a:hover {
  color: var(--accent-primary); border-left-color: var(--accent-primary);
  background: rgba(15,43,70,0.04);
}
:root.dark .terms-nav-list a:hover {
  background: rgba(30,64,175,0.1);
}

/* Terms Main */
.terms-main { }
.terms-section {
  padding: 32px 0; border-bottom: 1px solid var(--border-light);
}
.terms-section:last-of-type { border-bottom: none; }
.terms-section-title {
  display: flex; align-items: center; gap: 16px;
  font-size: 1.5rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 20px;
}
.terms-section-number {
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600;
  color: var(--accent-secondary);
}
.terms-subtitle {
  font-size: 1.1rem; font-weight: 700; color: var(--text-primary);
  margin: 24px 0 12px;
}
.terms-section-body p {
  font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 16px;
}
.terms-list {
  padding-left: 20px; margin: 0 0 16px;
}
.terms-list li {
  font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 8px; list-style: disc;
}

/* Terms Closing */
.terms-closing {
  text-align: center; padding: 48px 0 24px;
}
.terms-closing-text {
  font-size: 1rem; color: var(--text-secondary); margin-bottom: 8px;
}
.terms-closing-tagline {
  font-family: var(--font-accent); font-size: 1.25rem; font-weight: 700;
  color: var(--accent-primary); font-style: italic;
}

/* Dark Mode Terms Overrides */
:root.dark .terms-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .terms-hero-bg {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .terms-hero-title { color: white; }
:root.dark .terms-hero-subtitle { color: rgba(255,255,255,0.6); }
:root.dark .terms-hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
:root.dark .terms-nav { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .terms-nav-title { color: var(--text-muted); }
:root.dark .terms-nav-list a { color: var(--text-secondary); }
:root.dark .terms-nav-list a:hover { color: var(--accent-primary); background: rgba(30,64,175,0.1); }
:root.dark .terms-section { border-color: var(--border-light); }
:root.dark .terms-section-title { color: var(--text-primary); }
:root.dark .terms-subtitle { color: var(--text-primary); }
:root.dark .terms-section-body p { color: var(--text-secondary); }
:root.dark .terms-list li { color: var(--text-secondary); }
:root.dark .terms-closing-tagline { color: var(--accent-primary); }

/* ============================================
   RESPONSIVE — COURSE, VERIFY, TERMS
   ============================================ */
@media (max-width: 1024px) {
  .course-features-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .mentor-split { grid-template-columns: 1fr; text-align: center; }
  .mentor-image-wrapper { max-width: 400px; margin: 0 auto; }
  .verify-layout { grid-template-columns: 1fr; }
  .verify-form-wrapper { max-width: 600px; margin: 0 auto; }
  .terms-layout { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; }
}
@media (max-width: 768px) {
  .course-hero { min-height: 60vh; padding: 120px 0 80px; }
  .course-hero-title { font-size: 2rem; }
  .course-hero-stats { gap: 20px; }
  .stat-number { font-size: 2rem; }
  .stat-divider { display: none; }
  .course-features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .verify-form-wrapper { padding: 24px; }
  .verify-hero { min-height: 60vh; padding: 120px 0 80px; }
  .verify-hero-title { font-size: 2rem; }
  .terms-hero { min-height: 60vh; padding: 120px 0 80px; }
  .terms-section-title { font-size: 1.25rem; flex-direction: column; align-items: flex-start; gap: 8px; }
}
/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Hero */
.contact-hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  overflow: hidden; padding: 192px 0 152px;
  margin-top: -72px;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  animation: heroGradientShift 12s ease infinite;
  background-size: 200% 200%;
}
.contact-hero-particles { position: absolute; inset: 0; z-index: 1; }
.contact-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.contact-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; font-weight: 600; color: white;
  margin-bottom: 24px;
}
.contact-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.5);
}
.contact-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: white; margin-bottom: 16px;
}
.contact-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.85);
  line-height: 1.6; max-width: 640px; margin: 0 auto 32px;
}
.contact-hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact Info Section */
.contact-info-section { background: var(--bg-primary); }
.contact-info-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.contact-section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 12px;
}
:root.dark .contact-section-label { color: var(--accent-primary); }
.contact-info-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--text-primary); line-height: 1.2;
  margin-bottom: 16px;
}
.contact-info-desc {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.contact-info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
  display: flex; flex-direction: column; gap: 12px;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-secondary);
}
.contact-info-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 4px;
}
.contact-info-card-icon svg { width: 24px; height: 24px; }
.contact-info-card-title {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
}
.contact-info-card-desc {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}
.contact-info-card-link {
  font-size: 0.95rem; font-weight: 600; color: var(--accent-primary);
  text-decoration: none; transition: color var(--transition-fast);
}
.contact-info-card-link:hover { color: var(--accent-secondary); }
.contact-info-card-response {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted); margin-top: auto;
}
.contact-info-card-response svg { color: var(--accent-success); flex-shrink: 0; }

/* Contact Form Section */
.contact-form-section { background: var(--bg-secondary); }
.contact-form-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}

/* Contact Form Info */
.contact-form-info-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--text-primary); line-height: 1.2;
  margin-bottom: 16px;
}
.contact-form-info-desc {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 32px;
}
.contact-form-trust { display: flex; flex-direction: column; gap: 16px; }
.contact-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.contact-trust-item svg { color: var(--accent-success); flex-shrink: 0; }

/* Contact Form Wrapper */
.contact-form-wrapper { }
.contact-form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
#contactFormStatus {
  margin-bottom: 20px;
}
.contact-form-status-success {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: var(--radius-md);
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  color: #059669; font-size: 0.9rem;
}
.contact-form-status-error {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: var(--radius-md);
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  color: #DC2626; font-size: 0.9rem;
}
:root.dark .contact-form-status-success { color: #6EE7B7; }
:root.dark .contact-form-status-error { color: #FCA5A5; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.form-input, .form-textarea {
  padding: 12px 16px; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); font-size: 0.95rem;
  font-family: inherit; transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--bg-primary); color: var(--text-primary);
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.optional { color: var(--text-muted); font-weight: 400; }

.contact-form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border: none; border-radius: var(--radius-full);
  background: var(--gradient-cta); color: white;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(13,148,136,0.25);
  font-family: var(--font-body);
  width: 100%;
}
.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.35);
}
.contact-form-submit:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}
.contact-form-submit .spinner {
  animation: spin 1s linear infinite;
}

/* Contact CTA Section */
.contact-cta-section { background: var(--bg-primary); }
.contact-cta-card {
  max-width: 800px; margin: 0 auto; text-align: center;
  padding: 64px 48px; border-radius: var(--radius-xl);
  background: var(--gradient-hero); color: white;
  position: relative; overflow: hidden;
}
.contact-cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.contact-cta-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.contact-cta-icon svg { width: 36px; height: 36px; color: white; }
.contact-cta-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; color: white; margin-bottom: 16px;
}
.contact-cta-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.contact-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact CTA buttons on gradient background */
.contact-cta-section .hero-btn-primary {
  background: white; color: var(--accent-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.contact-cta-section .hero-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.contact-cta-section .hero-btn-ghost {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.contact-cta-section .hero-btn-ghost:hover {
  background: rgba(255,255,255,0.15); border-color: white;
}

/* Dark Mode Contact Overrides */
:root.dark .contact-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .contact-hero-bg {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .contact-hero-title { color: white; }
:root.dark .contact-hero-subtitle { color: rgba(255,255,255,0.8); }
:root.dark .contact-hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
:root.dark .contact-form-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .contact-info-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .contact-info-card-title { color: var(--text-primary); }
:root.dark .contact-info-card-desc { color: var(--text-secondary); }
:root.dark .contact-info-card-link { color: var(--accent-primary); }
:root.dark .contact-form-info-title { color: var(--text-primary); }
:root.dark .contact-form-info-desc { color: var(--text-secondary); }
:root.dark .contact-trust-item { color: var(--text-secondary); }
:root.dark .contact-cta-card {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .contact-cta-title { color: white; }
:root.dark .contact-cta-desc { color: rgba(255,255,255,0.8); }

/* ============================================
   RESPONSIVE — COURSE, VERIFY, TERMS, CONTACT
   ============================================ */
@media (max-width: 1024px) {
  .course-features-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .mentor-split { grid-template-columns: 1fr; text-align: center; }
  .mentor-image-wrapper { max-width: 400px; margin: 0 auto; }
  .verify-layout { grid-template-columns: 1fr; }
  .verify-form-wrapper { max-width: 600px; margin: 0 auto; }
  .terms-layout { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; }
  .contact-info-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .contact-form-layout { grid-template-columns: 1fr; }
  .contact-form-wrapper { max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .course-hero { min-height: 60vh; padding: 120px 0 80px; }
  .course-hero-title { font-size: 2rem; }
  .course-hero-stats { gap: 20px; }
  .stat-number { font-size: 2rem; }
  .stat-divider { display: none; }
  .course-features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .verify-form-wrapper { padding: 24px; }
  .verify-hero { min-height: 60vh; padding: 120px 0 80px; }
  .verify-hero-title { font-size: 2rem; }
  .terms-hero { min-height: 60vh; padding: 120px 0 80px; }
  .terms-section-title { font-size: 1.25rem; flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-hero { min-height: 60vh; padding: 120px 0 80px; }
  .contact-hero-title { font-size: 2rem; }
  .contact-info-section { padding: 64px 0; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .contact-cta-card { padding: 40px 24px; }
  .contact-cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .course-hero-stats { flex-direction: column; gap: 16px; }
  .course-hero-cta { flex-direction: column; align-items: center; }
  .course-hero-cta .hero-btn-primary,
  .course-hero-cta .hero-btn-ghost { width: 100%; justify-content: center; }
  .verify-submit-btn { width: 100%; justify-content: center; }
  .phone-input-group { flex-direction: column; }
  .phone-code { width: 100%; }
  .phone-input-group #verify_phone { width: 100%; }
  .contact-hero-cta { flex-direction: column; align-items: center; }
  .contact-hero-cta .hero-btn-primary,
  .contact-hero-cta .hero-btn-ghost { width: 100%; justify-content: center; }
}

/* ============================================
   CONSULTATION PAGE
   ============================================ */

/* Consultation Hero */
.consultation-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  overflow: hidden; padding: 160px 0 120px;
  margin-top: -72px;
}
.consultation-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  animation: heroGradientShift 12s ease infinite;
  background-size: 200% 200%;
}
.consultation-hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.consultation-hero-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: particleFloat 6s ease-in-out infinite;
}
.consultation-hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.consultation-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem; font-weight: 600; color: white;
  margin-bottom: 24px;
}
.consultation-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-warm); box-shadow: 0 0 8px rgba(245,158,11,0.5);
}
.consultation-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: white; margin-bottom: 20px;
}
.accent-highlight {
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.consultation-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7;
  color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.consultation-hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.consultation-hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Consultation Why Section */
.consultation-why { padding: 96px 0; background: var(--bg-primary); }
.consultation-why-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.consultation-why-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.consultation-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.consultation-why-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.consultation-why-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}
.consultation-why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gradient-cta); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.consultation-why-icon svg { width: 24px; height: 24px; color: white; }
.consultation-why-card h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 12px;
}
.consultation-why-card p {
  font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary);
}

/* Consultation What to Expect */
.consultation-expect { padding: 96px 0; background: var(--bg-secondary); }
.consultation-expect-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.consultation-expect-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.consultation-expect-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary);
}
.consultation-expect-list { max-width: 800px; margin: 0 auto; }
.consultation-expect-item {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}
.consultation-expect-item:last-child { border-bottom: none; }
.expect-number {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  background: var(--gradient-cta); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0; line-height: 1;
}
.expect-content h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px;
}
.expect-content p {
  font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary);
}

/* Consultation Who Is This For */
.consultation-who { padding: 96px 0; background: var(--bg-primary); }
.consultation-who-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.consultation-who-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.consultation-who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.consultation-who-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.consultation-who-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}
.who-icon { font-size: 2rem; margin-bottom: 16px; }
.consultation-who-card h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 12px;
}
.consultation-who-card p {
  font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary);
}

/* ============================================
   CONSULTATION PAGE — HONEST SECTION (Modern Cards)
   ============================================ */
.consultation-honest { padding: 96px 0; background: var(--bg-secondary); }
.consultation-honest-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.consultation-honest-content .about-section-label { color: var(--accent-secondary); }
.consultation-honest-content h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 48px;
}
.consultation-honest-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  text-align: left;
}
.consultation-honest-card {
  position: relative; padding: 0; border-radius: var(--radius-xl);
  background: var(--bg-primary); border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.consultation-honest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.1);
}
.consultation-honest-card-header {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border-light);
  background: rgba(239, 68, 68, 0.04);
}
.consultation-honest-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, 0.1);
}
.consultation-honest-icon svg { width: 22px; height: 22px; color: var(--accent-danger); }
.consultation-honest-card-header h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
  margin: 0; letter-spacing: -0.01em;
}
.consultation-honest-card-body {
  padding: 20px 28px 28px;
}
.consultation-honest-card-body p {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7; margin: 0;
}

/* ============================================
   CONSULTATION PAGE — PRICING SECTION
   ============================================ */
.consultation-pricing { }
.consultation-pricing-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.consultation-pricing-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.consultation-pricing-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary);
}
.consultation-pricing-card {
  max-width: 600px; margin: 0 auto; border-radius: var(--radius-xl);
  background: var(--bg-primary); border: 2px solid var(--accent-primary);
  padding: 48px; text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative; overflow: visible;
}
/* Ribbon badge — fixed alignment */
.pricing-badge-wrap {
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px; overflow: hidden;
}
.pricing-badge {
  position: absolute; top: 22px; right: -30px;
  background: var(--accent-warm); color: white;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 6px 40px; transform: rotate(45deg);
  letter-spacing: 0.05em; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.pricing-top { margin-bottom: 32px; }
.pricing-original {
  font-size: 1.25rem; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 8px;
}
.pricing-current {
  font-family: var(--font-mono); font-size: 3.5rem; font-weight: 700;
  color: var(--accent-primary); line-height: 1;
}
.pricing-duration {
  font-size: 0.95rem; color: var(--text-secondary); margin-top: 8px;
}
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; font-size: 0.95rem; color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature svg { width: 18px; height: 18px; color: var(--accent-success); flex-shrink: 0; }
.pricing-feature-highlight {
  background: rgba(13, 148, 136, 0.05); padding: 12px;
  border-radius: var(--radius-md); margin-top: 8px;
  font-weight: 600;
}
:root.dark .pricing-feature-highlight { background: rgba(13, 148, 136, 0.15); }
.pricing-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pricing-btn {
  background: var(--gradient-cta); color: white;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  padding: 16px 32px; font-size: 1.1rem;
}
.pricing-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}
.pricing-note {
  font-size: 0.85rem; color: var(--text-muted); margin: 0;
}
.pricing-note a { color: var(--accent-primary); text-decoration: underline; }

/* ============================================
   CONSULTATION PAGE — FAQ SECTION
   ============================================ */
.consultation-faq { padding: 96px 0; background: var(--bg-secondary); }
.consultation-faq-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.consultation-faq-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.consultation-faq .faq-accordion { max-width: 800px; margin: 0 auto; }
/* Ensure FAQ accordion styles are applied */
.consultation-faq .faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); margin-bottom: 12px;
  overflow: hidden; transition: all 0.3s ease;
}
.consultation-faq .faq-item:hover { border-color: var(--accent-secondary); }
.consultation-faq .faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-weight: 600;
  font-size: 1rem; color: var(--text-primary);
  background: var(--bg-primary); transition: background 0.2s ease;
  width: 100%; text-align: left; border: none;
}
.consultation-faq .faq-question:hover { background: var(--bg-secondary); }
.consultation-faq .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 24px; color: var(--text-secondary); line-height: 1.7;
}
.consultation-faq .faq-item.open .faq-answer {
  max-height: 500px; padding: 0 24px 20px;
}
.consultation-faq .faq-arrow {
  transition: transform 0.3s ease; font-size: 14px;
  color: var(--text-secondary); flex-shrink: 0; margin-left: 16px;
}
.consultation-faq .faq-item.open .faq-arrow { transform: rotate(180deg); }
.consultation-faq .faq-answer p {
  color: var(--text-secondary); line-height: 1.7; margin: 0;
}

/* ============================================
   CONSULTATION PAGE — FINAL CTA (course-cta pattern)
   ============================================ */
/* Uses existing .course-cta styles — no custom CSS needed */

/* ============================================
   CONSULTATION PAGE — DARK MODE
   ============================================ */
:root.dark .consultation-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .consultation-hero-bg {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .consultation-hero-title { color: white; }
:root.dark .consultation-hero-subtitle { color: rgba(255,255,255,0.85); }
:root.dark .consultation-hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
:root.dark .consultation-hero-trust { color: rgba(255,255,255,0.8); }
:root.dark .consultation-why-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .consultation-why-card h3 { color: var(--text-primary); }
:root.dark .consultation-why-card p { color: var(--text-secondary); }
:root.dark .consultation-expect-item { border-bottom-color: var(--border-light); }
:root.dark .consultation-expect-item h3 { color: var(--text-primary); }
:root.dark .consultation-expect-item p { color: var(--text-secondary); }
:root.dark .consultation-who-card { background: var(--bg-tertiary); border-color: var(--border-light); }
:root.dark .consultation-who-card h3 { color: var(--text-primary); }
:root.dark .consultation-who-card p { color: var(--text-secondary); }
:root.dark .consultation-honest { background: var(--bg-tertiary); }
:root.dark .consultation-honest-content .about-section-label { color: var(--accent-secondary); }
:root.dark .consultation-honest-content h2 { color: white; }
:root.dark .consultation-honest-card { background: var(--bg-primary); border-color: var(--border-light); }
:root.dark .consultation-honest-card-header { background: rgba(239, 68, 68, 0.08); }
:root.dark .consultation-honest-card-header h3 { color: var(--text-primary); }
:root.dark .consultation-honest-card-body p { color: var(--text-secondary); }
:root.dark .consultation-pricing-card { background: var(--bg-primary); border-color: var(--accent-primary); }
:root.dark .consultation-pricing-header h2 { color: var(--text-primary); }
:root.dark .consultation-pricing-desc { color: var(--text-secondary); }
:root.dark .pricing-feature { border-bottom-color: var(--border-light); color: var(--text-primary); }
:root.dark .pricing-original { color: var(--text-muted); }
:root.dark .consultation-faq .faq-item { border-color: var(--border-light); }
:root.dark .consultation-faq .faq-question { color: var(--text-primary); background: var(--bg-primary); }
:root.dark .consultation-faq .faq-question:hover { background: var(--bg-secondary); }
:root.dark .consultation-faq .faq-answer p { color: var(--text-secondary); }
:root.dark .consultation-pricing { background: var(--bg-tertiary); }
:root.dark .consultation-faq { background: var(--bg-tertiary); }
:root.dark .honest-item { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
:root.dark .honest-item svg { color: rgba(255,255,255,0.5); }
:root.dark .consultation-pricing-card { background: var(--bg-tertiary); border-color: var(--accent-primary); }
:root.dark .pricing-original { color: var(--text-muted); }
:root.dark .pricing-current { color: var(--accent-primary); }
:root.dark .pricing-feature { border-bottom-color: var(--border-light); color: var(--text-primary); }
:root.dark .pricing-note a { color: var(--accent-primary); }
:root.dark .consultation-final-cta {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .consultation-final-cta-content h2 { color: white; }
:root.dark .consultation-final-cta-content .consultation-final-cta-sub { color: rgba(255,255,255,0.85); }
:root.dark .consultation-final-cta-content .consultation-final-cta-note { color: rgba(255,255,255,0.6); }

/* ============================================
   CONSULTATION PAGE — RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .consultation-hero { padding: 140px 0 80px; }
  .consultation-hero-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .consultation-hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .consultation-why-grid { grid-template-columns: 1fr; }
  .consultation-expect-item { flex-direction: column; gap: 12px; }
  .expect-number { font-size: 1.5rem; }
  .consultation-who-grid { grid-template-columns: 1fr; }
  .consultation-pricing-card { padding: 32px 24px; }
  .pricing-current { font-size: 2.5rem; }
  .consultation-final-cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .consultation-hero { padding: 120px 0 60px; }
  .consultation-hero-title { font-size: 1.75rem; }
  .consultation-hero-cta { flex-direction: column; align-items: center; }
  .consultation-hero-cta .hero-btn-primary,
  .consultation-hero-cta .hero-btn-ghost { width: 100%; justify-content: center; }
  .consultation-pricing-card { padding: 24px 16px; }
  .consultation-final-cta-buttons { flex-direction: column; align-items: center; }
  .consultation-final-cta-buttons .hero-btn-primary,
  .consultation-final-cta-buttons .hero-btn-ghost { width: 100%; justify-content: center; }
}

/* ============================================
   SIGN-IN / SIGN-UP PAGE
   ============================================ */
.signin-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.signin-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F2B46 0%, #0D9488 50%, #3B82F6 100%);
  z-index: 0;
}
.signin-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(59,130,246,0.2) 0%, transparent 50%);
}
.signin-hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.signin-hero-content {
  position: relative; z-index: 2; max-width: 440px; width: 100%; margin: 0 auto;
}
.signin-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px; padding: 6px 16px; margin-bottom: 20px;
}
.signin-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10B981;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.signin-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: #FFFFFF; margin: 0 0 12px;
}
.signin-subtitle {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.8);
  margin: 0 0 32px;
}

/* Alerts */
.signin-alert {
  display: flex; align-items: center; gap: 10px;
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 0.9rem;
}
.signin-alert svg { flex-shrink: 0; }
.signin-alert-error {
  background: rgba(239,68,68,0.15); color: #FCA5A5;
  border: 1px solid rgba(239,68,68,0.3);
}
.signin-alert-success {
  background: rgba(16,185,129,0.15); color: #6EE7B7;
  border: 1px solid rgba(16,185,129,0.3);
}

/* Login Form */
.signin-form { margin-bottom: 32px; }
.signin-field { margin-bottom: 16px; }
.signin-field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.9); margin-bottom: 6px;
}
.signin-field input {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #FFFFFF;
  font-size: 1rem; font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.signin-field input::placeholder { color: rgba(255,255,255,0.4); }
.signin-field input:focus {
  outline: none; border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}

.signin-field-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.signin-checkbox {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); cursor: pointer;
}
.signin-checkbox input {
  width: 16px; height: 16px; accent-color: #10B981; cursor: pointer;
}
.signin-forgot {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  text-decoration: underline; text-underline-offset: 2px;
}
.signin-forgot:hover { color: #FFFFFF; }

.signin-submit-btn {
  width: 100%; padding: 14px 24px; border: none; border-radius: 8px;
  background: linear-gradient(135deg, #10B981 0%, #0D9488 100%);
  color: #FFFFFF; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
  font-family: var(--font-body);
}
.signin-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}

/* Divider */
.signin-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 28px 0; text-align: center;
}
.signin-divider::before,
.signin-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.15);
}
.signin-divider span {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); white-space: nowrap;
}

/* Register CTA */
.signin-register { text-align: center; }
.signin-register-text {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  margin: 0 0 16px; line-height: 1.6;
}

/* ============================================
   DARK MODE — SIGNIN PAGE
   ============================================ */
:root.dark .signin-hero-bg {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #312E81 100%);
}
:root.dark .signin-field input {
  background: rgba(31,41,55,0.6); border-color: rgba(255,255,255,0.1);
  color: #F9FAFB;
}
:root.dark .signin-field input:focus {
  background: rgba(31,41,55,0.8); border-color: rgba(255,255,255,0.25);
}

/* ============================================
   RESPONSIVE — SIGNIN PAGE
   ============================================ */
@media (max-width: 768px) {
  .signin-hero { padding: 100px 0 60px; }
  .signin-hero-content { max-width: 100%; }
  .signin-title { font-size: 2rem; }
}
