/* ═══════════════════════════════════════
   PREMIUM LIGHT THEME — GOLD/YELLOW ELEGANCE
   ═══════════════════════════════════════ */
:root {
  --accent: #D97706;          /* Premium Gold/Yellow */
  --accent-light: #F59E0B;
  --accent-dark: #B45309;
  --accent-dim: rgba(217, 119, 6, 0.08);
  --accent-glow: rgba(217, 119, 6, 0.25);
  
  --bg-main: #FAFAFA;         /* Soft premium off-white */
  --bg-alt: #F8FAFC;          /* Slightly deeper for contrast */
  --bg-card: #FFFFFF;         /* Pure white cards */
  
  --text-main: #0F172A;       /* Slate 900 for high contrast text */
  --text-muted: #475569;      /* Slate 600 for secondary text */
  --text-inverse: #FFFFFF;    /* White text on dark/accent areas */
  
  --border-light: #E2E8F0;    /* Soft borders */
  --border-accent: rgba(13, 148, 136, 0.15);
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.02);
  
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Ambient background subtle blur elements */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.text-accent { color: var(--accent); }
.text-accent-bold { color: var(--accent); font-weight: 700; }

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


.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered entrance for hero elements specifically */
.hero-left .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-left .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero-left .reveal:nth-child(3) { transition-delay: 0.4s; }
.hero-left .reveal:nth-child(4) { transition-delay: 0.55s; }
.hero-left .reveal:nth-child(5) { transition-delay: 0.7s; }
.hero-right.reveal { transition-delay: 0.4s; }


/* ═══════════════════════════════════════
   ROOT CAUSE ANALYSIS ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes auraGlow {
  0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

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

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}


/* ═══════════════════════════════════════
   COMPONENTS
   ═══════════════════════════════════════ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--text-inverse);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.35);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.btn-full { width: 100%; justify-content: center; margin-top: auto; }
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.logo-mark {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 4px;
  display: inline-block;
  transform: rotate(45deg);
}

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

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

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

.mentor-link-blink {
  color: var(--accent) !important;
  font-weight: 700 !important;
  animation: slowBlink 3s ease-in-out infinite;
}

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

.nav-cta {
  padding: 12px 28px !important;
  background: var(--text-main) !important;
  color: var(--text-inverse) !important;
  font-weight: 600 !important;
  border-radius: 60px;
  font-size: 0.9rem !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════
   STICKY CTA
   ═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: var(--transition);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 60px;
  box-shadow: 0 10px 40px var(--accent-glow);
  transition: var(--transition);
}

.sticky-cta-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 15px 50px rgba(217, 119, 6, 0.4);
}

/* ═══════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--bg-main);
}


.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

/* Animated Aura & Particles */
.hero-aura {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(217, 119, 6, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(217, 119, 6, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: auraPulse 8s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-particles {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%; /* Keep particles strictly on the left half */
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px 3px rgba(217, 119, 6, 0.3);
  animation: floatUp 15s linear infinite;
}

/* Individual particle settings */
.p1 { width: 6px; height: 6px; left: 10%; bottom: -20px; animation-duration: 20s; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; left: 25%; bottom: -20px; animation-duration: 25s; animation-delay: 5s; filter: blur(1px); }
.p3 { width: 8px; height: 8px; left: 45%; bottom: -20px; animation-duration: 18s; animation-delay: 2s; }
.p4 { width: 5px; height: 5px; left: 60%; bottom: -20px; animation-duration: 22s; animation-delay: 8s; filter: blur(2px); }
.p5 { width: 7px; height: 7px; left: 80%; bottom: -20px; animation-duration: 19s; animation-delay: 3s; }
.p6 { width: 3px; height: 3px; left: 90%; bottom: -20px; animation-duration: 28s; animation-delay: 11s; filter: blur(1px); }
.p7 { width: 5px; height: 5px; left: 35%; bottom: -20px; animation-duration: 21s; animation-delay: 7s; }
.p8 { width: 6px; height: 6px; left: 75%; bottom: -20px; animation-duration: 24s; animation-delay: 1s; filter: blur(2px); }

/* More translucent out-of-focus particles for depth */
.p9 { width: 12px; height: 12px; left: 15%; bottom: -20px; animation-duration: 26s; animation-delay: 4s; background: rgba(217, 119, 6, 0.4); filter: blur(3px); }
.p10 { width: 4px; height: 4px; left: 30%; bottom: -20px; animation-duration: 17s; animation-delay: 9s; background: rgba(217, 119, 6, 0.6); filter: blur(1px); }
.p11 { width: 14px; height: 14px; left: 50%; bottom: -20px; animation-duration: 30s; animation-delay: 0.5s; background: rgba(217, 119, 6, 0.3); filter: blur(4px); }
.p12 { width: 6px; height: 6px; left: 65%; bottom: -20px; animation-duration: 23s; animation-delay: 14s; background: rgba(217, 119, 6, 0.5); filter: blur(2px); }
.p13 { width: 10px; height: 10px; left: 85%; bottom: -20px; animation-duration: 21s; animation-delay: 6s; background: rgba(217, 119, 6, 0.4); filter: blur(3px); }
.p14 { width: 5px; height: 5px; left: 5%; bottom: -20px; animation-duration: 19s; animation-delay: 12s; background: rgba(217, 119, 6, 0.6); filter: blur(1px); }
.p15 { width: 11px; height: 11px; left: 55%; bottom: -20px; animation-duration: 27s; animation-delay: 3.5s; background: rgba(217, 119, 6, 0.35); filter: blur(3px); }
.p16 { width: 7px; height: 7px; left: 95%; bottom: -20px; animation-duration: 20s; animation-delay: 10s; background: rgba(217, 119, 6, 0.5); filter: blur(2px); }

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid rgba(217, 119, 6, 0.3);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
}

.hero-highlight {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #0284C7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  margin-top: 16px;
}

.stat-item { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.stat-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.stat-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.2px;
}

.hero-stats .stat-divider { width: 4px; height: 4px; background: var(--border-light); border-radius: 50%; padding: 0; }


.hero-right { display: flex; justify-content: center; align-items: center; position: relative; }

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  z-index: 1;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
  border-radius: 40px;
  opacity: 0.6;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  animation: heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

.hero-image-frame:hover .hero-img { transform: translateY(-20px) scale(1.02); }


.hero-image-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  animation: floatBadge 6s ease-in-out infinite;
}

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

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--accent-dim);
}

/* ═══════════════════════════════════════
   SECTION 1.5: AUTHORITY PROOF
   ═══════════════════════════════════════ */
.authority-proof {
  padding: 60px 0;
  background: var(--bg-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.authority-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.authority-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem); /* Matches .section-title */
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.authority-card-wrapper {
  perspective: 1200px;
  margin-bottom: 32px;
  position: relative;
}

/* Background floating orbs */
.authority-proof::before,
.authority-proof::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite alternate;
}

.authority-proof::before { top: -100px; left: -100px; opacity: 0.4; }
.authority-proof::after { bottom: -100px; right: -100px; opacity: 0.3; animation-delay: -5s; }

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

.authority-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 60px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.authority-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
}

.authority-card:hover::before {
  left: 100%;
}

.authority-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 60px 120px var(--accent-glow);
  background: #FFF;
}

.stat-large {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -4px;
  display: block;
}

.stat-description {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
}

.authority-subtext {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: -0.2px;
}


/* ═══════════════════════════════════════
   SECTION 1.7: THE MISSING LINK
   ═══════════════════════════════════════ */
.missing-link {
  padding: 140px 0;
  background: #FAF7F2; /* Soft premium neutral beige */
  position: relative;
  overflow: hidden;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
}

.section-header-centered .section-label {
  margin-bottom: 20px;
}

.section-header-centered .section-title {
  margin-bottom: 24px;
}

.section-sub {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.link-card {
  background: var(--bg-card);
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.link-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.link-card:hover::after {
  opacity: 1;
}

.link-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(217, 119, 6, 0.12);
  border-color: var(--accent-light);
}

.link-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  transition: var(--transition);
  flex-shrink: 0;
}

.link-card:hover .link-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.1) rotate(5deg);
}


.link-icon svg {
  width: 36px;
  height: 36px;
}

.link-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.link-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.link-highlight-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 56px;
  background: #FFF;
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.link-highlight-box p {
  font-size: 1.25rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.6;
}

.link-highlight-box strong {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 992px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .link-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .link-card {
    padding: 40px 24px;
  }
  .link-highlight-box {
    padding: 32px 24px;
  }
  .link-highlight-box p {
    font-size: 1.15rem;
  }
}


.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.scroll-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════
   SECTION 5: CORE PROBLEMS
   ═══════════════════════════════════════ */
.core-problems { 
  padding: 140px 0; 
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.core-problems .container { position: relative; z-index: 2; text-align: center; }

.problems-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: auraGlow 8s ease-in-out infinite alternate;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  position: relative;
  z-index: 3;
}

.problem-card {
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow;
}

.problem-card.visible {
  animation: cardFloat 6s ease-in-out infinite;
}

/* Staggered float animation */
.problem-card:nth-child(2n).visible { animation-delay: 1.5s; animation-duration: 7s; }
.problem-card:nth-child(3n).visible { animation-delay: 3s; animation-duration: 8s; }
.problem-card:nth-child(4n).visible { animation-delay: 0.5s; animation-duration: 6.5s; }

.problem-card:hover {
  border-color: var(--accent);
  transform: translateY(-15px) scale(1.03) !important;
  box-shadow: 0 30px 60px var(--accent-glow);
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(217, 119, 6, 0.15), #FFF 70%);
  animation-play-state: paused;
  z-index: 10;
}

.problem-surface { 
  font-family: var(--font-display); 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--text-main);
  transition: color 0.3s ease;
}

.problem-card:hover .problem-surface {
  color: var(--accent-dark);
}

.problem-arrow { 
  color: var(--border-light); 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

.problem-card:hover .problem-arrow { 
  color: var(--accent);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.problem-root { 
  font-size: 0.95rem; 
  color: var(--accent); 
  font-weight: 700; 
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.problem-card:hover .problem-root {
  transform: scale(1.05);
  opacity: 1;
}

.problems-closing { font-size: 1.4rem; font-weight: 600; font-family: var(--font-display); color: var(--text-main);}


/* ═══════════════════════════════════════
   SECTION 6: TRANSFORMATION PROCESS (HIGH ENGAGEMENT)
   ═══════════════════════════════════════ */
.transformation-process {
  padding: 140px 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.transformation-process::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.engagement-stack {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.engagement-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  padding: 56px 64px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.engagement-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(217, 119, 6, 0.08);
  border-color: var(--accent-light);
}

/* Eye-Catching Anchor */
.row-anchor {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.step-num-display {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(217, 119, 6, 0.06);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.8;
  z-index: 1;
  pointer-events: none;
  transition: all 0.6s ease;
}

.engagement-row:hover .step-num-display {
  color: rgba(217, 119, 6, 0.1);
  transform: translateY(-50%) translateX(10px);
}

.anchor-aura {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor-aura::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseRotate 4s linear infinite;
}

@keyframes pulseRotate {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

/* Body Content */
.row-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.row-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.row-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* The Golden Insight Box */
.insight-nugget {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.03) 0%, rgba(217, 119, 6, 0.07) 100%);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.engagement-row:hover .insight-nugget {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(217, 119, 6, 0.12) 100%);
  transform: translateX(10px);
}

.nugget-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.nugget-label svg {
  color: var(--accent);
  filter: drop-shadow(0 0 5px var(--accent-glow));
}

.insight-nugget p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.6;
}

.insight-nugget strong {
  color: var(--accent);
  font-weight: 700;
}

/* Bottom Highlight - V2 */
.process-bottom-v2 {
  margin-top: 80px;
  text-align: center;
}

.status-box {
  display: inline-block;
  background: #FFFFFF;
  padding: 40px 80px;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  border-top: 5px solid var(--accent);
  position: relative;
}

.status-box p {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.status-box strong {
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 700;
}

.status-box::before {
  content: '"';
  position: absolute;
  top: 10px; left: 30px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-dim);
  line-height: 1;
}



/* ═══════════════════════════════════════
   SECTION 7: PRICING
   ═══════════════════════════════════════ */
.pricing { padding: 140px 0; background: var(--bg-main); position: relative; }
.pricing .container { text-align: center; }

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: -24px;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  text-align: left;
  margin-bottom: 48px;
}

.price-card {
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.price-card-featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--bg-card) 0%, #FFF9F0 100%);
  z-index: 2;
}

.price-featured-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--accent);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.price-tag-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; margin-top: 8px; }

.price-plan-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; color: var(--text-main); }
.price-plan-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; min-height: 80px; }

.price-amount-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
.amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--text-main); letter-spacing: -1px; }

.price-meta-group { margin-bottom: 24px; }
.price-meta { font-weight: 700; font-size: 0.85rem; color: var(--accent); background: var(--accent-dim); display: inline-block; padding: 4px 12px; border-radius: 20px; margin-right: 8px; margin-bottom: 8px;}

.price-ideal { background: var(--bg-alt); padding: 20px; border-radius: var(--radius-md); margin-bottom: 32px; border: 1px solid var(--border-light); }
.ideal-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 8px; display: block;}
.ideal-text { font-size: 0.9rem; color: var(--text-main); font-weight: 600; }

.price-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.price-features li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; color: var(--text-muted); align-items: flex-start; line-height: 1.4; }
.price-features li:last-child { border-bottom: none; }
.price-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pricing-guarantee {
  display: flex; gap: 24px; align-items: center; max-width: 850px; margin: 0 auto; padding: 32px 40px; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); text-align: left; box-shadow: var(--shadow-sm);
}
.guarantee-icon { width: 56px; height: 56px; background: var(--accent-dim); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.pricing-guarantee p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.pricing-guarantee strong { color: var(--text-main); }


/* ═══════════════════════════════════════
   SECTION 8: TRANSFORMATION
   ═══════════════════════════════════════ */
.transformation { padding: 140px 0; background: var(--bg-alt); }
.transformation .container { text-align: center; }

.transform-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto 56px;
}

.transform-col { flex: 1; }

.transform-header {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.transform-before .transform-header { color: var(--text-muted); }
.transform-after .transform-header { color: var(--accent); }

.transform-item {
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.transform-before .transform-item {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.transform-after .transform-item {
  background: var(--accent);
  color: var(--text-inverse);
  border: 1px solid transparent;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.transform-after .transform-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.transform-arrow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.transform-arrow-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.transform-closing { font-size: 1.4rem; font-weight: 600; font-family: var(--font-display); color: var(--text-main);}

/* ═══════════════════════════════════════
   SECTION 9: TESTIMONIALS
   ═══════════════════════════════════════ */
/* Pricing Page Specifics */
.pricing-hero { min-height: 60vh !important; padding-bottom: 60px; }
.pricing-hero .hero-headline { font-size: clamp(2.5rem, 6vw, 4.5rem); }

@media (max-width: 768px) {
  .pricing-hero { min-height: 50vh !important; padding: 120px 0 40px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .price-card-featured { transform: none !important; }
}

.testimonials { padding: 140px 0 100px; overflow: hidden; background: var(--bg-card); }

.testimonials .container { text-align: center; margin-bottom: 64px; }

.marquee-wrapper {
  overflow: hidden;
  margin-bottom: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.marquee-left { animation: marqueeLeft 60s linear infinite; }
.marquee-right { animation: marqueeLeft 60s linear infinite reverse; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 20px; }

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 32px;
  font-weight: 500;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.author-name { font-weight: 700; font-size: 1rem; color: var(--text-main);}
.author-role { font-size: 0.85rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   SECTION 10: APPLICATION FORM
   ═══════════════════════════════════════ */
.application { padding: 100px 0; background: var(--bg-alt); }
.application .container { text-align: center; }

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg-card);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.application-form { display: flex; flex-direction: column; gap: 20px; }

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

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

.form-group label { font-size: 0.9rem; font-weight: 700; color: var(--text-main); }

.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  background: var(--bg-card);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-note { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 12px; font-weight: 500;}

.form-success { display: none; text-align: center; padding: 48px; }
.form-success.visible { display: block; animation: fadeUp 0.5s ease; }

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

.success-icon {
  margin-bottom: 24px;
  display: inline-flex;
  padding: 20px;
  background: var(--accent-dim);
  border-radius: 50%;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.form-success p { color: var(--text-muted); font-size: 1.05rem;}

/* ═══════════════════════════════════════
   SECTION 11: FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  color: var(--text-main);
  letter-spacing: -1px;
}

.final-text { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 48px; position: relative; font-weight: 500;}

/* ═══════════════════════════════════════
   ABOUT THE MENTOR
   ═══════════════════════════════════════ */
.about-mentor {
  padding: 140px 0;
  background: var(--bg-main);
  overflow: hidden;
}



/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.footer-copy { font-size: 0.9rem; color: var(--text-muted); font-weight: 500;}

.responsive-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  transition: max-width 0.3s ease;
}

/* ═══════════════════════════════════════
   RESPONSIVE LOGIC
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .price-card-featured { transform: none; z-index: 1; }
  .price-card-featured:hover { transform: translateY(-8px); }
  .truth-layout { gap: 40px; }
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 800;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; font-weight: 600; color: var(--text-main);}
  .mobile-menu-btn { display: flex; z-index: 850; }
  
  .responsive-logo { max-width: 200px; max-height: 80px; }

  .hero { padding: 120px 0 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-left { text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-right { order: -1; }
  .hero-particles { right: 0; top: 40%; } /* Move particles to bottom half on mobile */
  .hero-image-frame { max-width: 400px; margin: 0 auto; }
  
  .hero-stats { justify-content: center; gap: 32px; }
  .stat-divider { display: none; }

  .truth-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px; }

  .transform-grid { flex-direction: column; gap: 32px; }
  .transform-arrow-col { flex-direction: row; }
  .transform-arrow-line { width: 48px; height: 2px; }

  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .relate-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-grid { grid-template-columns: 1fr; }

  .footer-container { flex-direction: column; gap: 20px; text-align: center; }
  .sticky-cta { bottom: 20px; right: 20px; }

  /* Engagement Framework Responsiveness */
  .engagement-row { grid-template-columns: 1fr; gap: 32px; padding: 48px; }
  .row-anchor { justify-content: flex-start; height: 80px; }
  .step-num-display { font-size: 5rem; left: auto; right: 0; top: 0; transform: none; }
  .engagement-row:hover .step-num-display { transform: translateY(-10px); }
  .row-text p { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 2rem; margin-bottom: 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 16px;}
  .hero-ctas .btn { width: 100%; }
  .responsive-logo { max-width: 180px; max-height: 70px; }
  .problems-grid { grid-template-columns: 1fr; }
  .relate-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  
  .engagement-row { padding: 32px 24px; }
  .row-anchor { height: 60px; }
  .anchor-aura { width: 60px; height: 60px; }
  .step-num-display { font-size: 4rem; opacity: 0.04; }
  .row-text h3 { font-size: 1.5rem; }
  .insight-nugget { padding: 24px; }
  .status-box { padding: 32px 24px; }
  .status-box strong { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}