/* === FONT FACE SETUP === */
@font-face {
  font-family: 'Visby';
  src: url('fonts/visby-webfont/VisbyBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* === CSS VARIABLES === */
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

:root {
  --color-orange: #FF9300;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-heading: 'Visby', Arial, sans-serif;
  --font-body: 'Manrope', Arial, sans-serif;
}

/* === GLOBAL BASE STYLES === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

/* Enhanced Button Hover/Active Effects */
.btn-primary, .btn-outline-primary {
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.18s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow, color;
}
.btn-primary:hover, .btn-primary:focus,
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: #ffb347 !important;
  color: #181818 !important;
  box-shadow: 0 8px 32px 0 rgba(255,147,0,0.22), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  transform: scale(1.045);
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}
.btn-primary:active, .btn-outline-primary:active {
  background: #e67c00 !important;
  color: #fff !important;
  transform: scale(0.98);
}

/* SVG Icon Micro-Animation */
.icon-animate {
  transition: filter 0.22s, transform 0.22s;
  will-change: filter, transform;
}
.icon-animate:hover, .icon-animate:focus {
  filter: drop-shadow(0 0 12px #FF9300);
  transform: scale(1.12) rotate(-2deg);
}

/* Section Fade-in Animation */
.section-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.section-fade.in-view {
  opacity: 1;
  transform: none;
}

/* Ensure sections are visible when in view */
.experts-section.section-fade.in-view,
.courses-section.section-fade.in-view {
  opacity: 1 !important;
  transform: none !important;
}

/* Force expert cards to be visible */
.experts-section .expert-card {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
}

/* Force course cards to be visible */
.courses-section .course-card {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: none !important;
}

.courses-section .course-info {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.courses-section .course-video-preview {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Debug styles - remove in production */
.section-fade {
  border: 1px solid rgba(255,147,0,0.2);
}

/* Fallback: Make sections visible after a delay if JS fails */
@media (prefers-reduced-motion: no-preference) {
  .section-fade {
    animation: sectionFadeInFallback 0.7s ease-out 2s forwards;
  }
}

@keyframes sectionFadeInFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus State for Accessibility */
*:focus-visible {
  outline: 2.5px solid var(--color-orange) !important;
  outline-offset: 2px !important;
  z-index: 2;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 0.5em;
}
h1 { font-size: 110px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 0.5em;
}
p, li, span, a, label, input, button {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
}

/* === BUTTONS === */
.btn-primary, .btn-primary:visited {
  background: var(--color-orange);
  color: var(--color-black);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 18px;
  padding: 16px 40px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(255,147,0,0.10);
}
.btn-primary:hover, .btn-primary:focus {
  background: #e67c00;
  color: var(--color-white);
  box-shadow: 0 4px 24px rgba(255,147,0,0.18);
}

/* === ICON SYSTEM === */
.icon-outline {
  stroke-width: 2.5;
  fill: none;
}
.icon-main {
  stroke: var(--color-orange);
}
.icon-secondary-black {
  stroke: var(--color-black);
}
.icon-secondary-white {
  stroke: var(--color-white);
}

/* === SECTION STYLES === */
section {
  background: var(--color-black);
  border-radius: 2rem;
  box-shadow: 0 2px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
  padding: 3rem 2rem;
}

@media (max-width: 900px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  section { padding: 2rem 1rem; }
}

/* === REMOVE BOOTSTRAP OVERRIDES THAT CLASH === */
.bg-white, .bg-light, .card, .list-group-item {
  background: transparent !important;
  color: var(--color-white) !important;
  border: none !important;
}

/* === LINKS === */
a {
  color: var(--color-orange);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-white);
}

/* Animated glowing border for active split-step */
.split-step.active {
  box-shadow: 0 0 0 3px rgba(255,147,0,0.18), 0 0 16px 2px rgba(255,147,0,0.18);
  animation: split-step-glow 1.6s infinite alternate;
}
@keyframes split-step-glow {
  0% { box-shadow: 0 0 0 3px rgba(255,147,0,0.18), 0 0 16px 2px rgba(255,147,0,0.18); }
  100% { box-shadow: 0 0 0 6px rgba(255,147,0,0.32), 0 0 32px 8px rgba(255,147,0,0.22); }
}
/* Pulse/glow animation for split-content-icon on step change */
.split-content-icon.pulse {
  animation: split-icon-pulse 1.1s cubic-bezier(.4,0,.2,1);
}
@keyframes split-icon-pulse {
  0% { filter: drop-shadow(0 0 0 #FF9300); transform: scale(1); }
  40% { filter: drop-shadow(0 0 16px #FF9300); transform: scale(1.08); }
  100% { filter: drop-shadow(0 0 0 #FF9300); transform: scale(1); }
}

/* Tighter, more premium split-content box */
/* Strict max-height and scroll for split-content box */
.split-content {
  max-width: 480px;
  max-height: 420px;
  min-height: 0;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  gap: 0.6rem;
  overflow-y: auto;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .split-content {
    max-width: 98vw;
    max-height: none;
    min-height: 0;
    padding: 1rem 0.5rem;
    margin-top: 0;
  }
}
/* Reduce vertical space between elements inside split-content */
.split-content > * { margin-bottom: 0.6rem; }
.split-content > *:last-child { margin-bottom: 0; }
/* Fix split section layout for desktop */
.transformation-split-section .container {
  max-width: 1200px;
}
.transformation-split-section .row.align-items-center {
  display: flex;
  flex-wrap: nowrap;
}
.transformation-split-section .row.align-items-center > .col-12.col-md-5 {
  margin-right: 3.5rem;
}
@media (max-width: 900px) {
  .transformation-split-section .row.align-items-center {
    flex-wrap: wrap;
    display: block;
  }
  .transformation-split-section .row.align-items-center > .col-12.col-md-5 {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
} 

/* Match reference: more compact split-content box and spacing */
.split-stepper {
  padding: 1.5rem 1.2rem;
  gap: 0.8rem;
}
@media (max-width: 900px) {
  .transformation-split-section .row.align-items-center > .col-12.col-md-5 {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
  .split-stepper {
    padding: 1.2rem 0.7rem;
    gap: 0.7rem;
  }
} 

/* === MOVED FROM index.html === */
.hero-bg {
  background: radial-gradient(ellipse at 60% 40%, rgba(255,147,0,0.08) 0%, rgba(0,0,0,0.95) 70%), var(--color-black);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-abstract {
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}
.hero-abstract2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.hero-logo img, .hero-logo svg {
  max-width: 110px;
  height: auto;
  display: block;
}
.hero-cta-secondary {
  background: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 32px;
  margin-left: 1rem;
  transition: background 0.2s, color 0.2s;
}
.hero-cta-secondary:hover, .hero-cta-secondary:focus {
  background: var(--color-orange);
  color: var(--color-black);
}
.hero-microcopy {
  color: var(--color-white);
  opacity: 0.7;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.hero-headline-orange {
  background: linear-gradient(90deg, #FF9300 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  animation: gradient-move 2.5s ease-in-out infinite alternate;
}
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.btn-primary, .btn-primary:visited {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,147,0,0.18);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(.4,0,.2,1), height 0.4s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.btn-primary:hover::after, .btn-primary:focus::after {
  width: 300px;
  height: 300px;
}
.globe-pulse {
  animation: globePulse 2.5s infinite alternate cubic-bezier(.4,0,.2,1);
  transform-origin: 60px 60px;
}
@keyframes globePulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}
.checkmark-path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: checkDraw 1.2s 0.7s forwards cubic-bezier(.4,0,.2,1);
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}
.counter {
  font-weight: 800;
  color: var(--color-orange);
  font-size: 1.2em;
  display: inline-block;
  min-width: 60px;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .hero-bg { min-height: 80vh; }
  .hero-abstract, .hero-abstract2 { display: none; }
}
.premium-animated-icon {
  width: 220px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #191919;
  border-radius: 2rem;
  box-shadow: 0 0 32px 0 rgba(255,147,0,0.08);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.premium-animated-icon .orbit-group {
  transform-origin: 90px 70px;
  animation: orbit-shield-center 7s linear infinite;
}
@keyframes orbit-shield-center {
  0% { transform: rotate(0deg) translate(0, -40px) rotate(0deg); }
  100% { transform: rotate(360deg) translate(0, -40px) rotate(-360deg); }
}
.premium-animated-icon .icon-bg-circles {
  opacity: 0.18;
  stroke: #FF9300;
}
.premium-animated-icon .icon-bg-lines {
  opacity: 0.18;
  stroke: #FF9300;
}
.premium-animated-icon .icon-shield {
  stroke: #FF9300;
  stroke-width: 3;
  fill: none;
}
.premium-animated-icon .icon-check {
  stroke: #FF9300;
  stroke-width: 3;
  fill: none;
}
.pain-section {
  position: relative;
  z-index: 2;
}
.pain-card {
  position: relative;
  overflow: hidden;
}
.pain-list .pain-icon svg {
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pain-list .pain-icon:hover svg,
.pain-list .pain-icon:focus svg {
  box-shadow: 0 0 0 4px rgba(255,147,0,0.18);
  transform: scale(1.08);
  cursor: pointer;
}
.pain-list li {
  opacity: 0;
  transform: translateY(24px);
  animation: fadein-up 0.7s forwards;
}
.pain-list .fadein-1 { animation-delay: 0.2s; }
.pain-list .fadein-2 { animation-delay: 0.4s; }
.pain-list .fadein-3 { animation-delay: 0.6s; }
.pain-list .fadein-4 { animation-delay: 0.8s; }
@keyframes fadein-up {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .pain-section { min-height: 0; padding: 0; }
  .pain-card { padding: 2rem 1rem; }
  .pain-illustration { margin-top: 2rem; }
}
.transformation-split-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 700px; /* Increased height */
}
.split-stepper {
  background: rgba(30,30,30,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10), 0 1.5px 12px 0 rgba(0,0,0,0.14);
  border: 1.5px solid rgba(255,147,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.2rem 1.5rem;
  min-width: 340px; /* Increased width */
  max-width: 420px;
}
.split-step {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 1.1rem;
  color: #e0e0e0;
  font-weight: 600;
  cursor: pointer;
  border-left: 4px solid transparent;
  padding-left: 0.7rem;
  transition: color 0.2s, border-color 0.2s;
}
.split-step.active, .split-step:hover, .split-step:focus {
  color: var(--color-orange);
  border-left: 4px solid var(--color-orange);
  background: rgba(255,147,0,0.04);
  border-radius: 0.7rem;
  outline: none;
}
.split-step-icon svg {
  display: block;
  margin: 0 auto;
  stroke-width: 2.5;
  stroke: var(--color-orange);
  fill: none;
  width: 32px;
  height: 32px;
}
.split-step-title {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
}
.split-content {
  background: rgba(30,30,30,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10), 0 1.5px 12px 0 rgba(0,0,0,0.14);
  border: 1.5px solid rgba(255,147,0,0.12);
  min-height: 420px; /* Increased height */
  min-width: 480px;  /* Increased width */
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.split-content-icon svg {
  display: block;
  margin: 0 auto;
  stroke-width: 2.5;
  stroke: var(--color-orange);
  fill: none;
  width: 56px;
  height: 56px;
}
.split-content-title {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 2rem;
  color: var(--color-white);
}
.split-content-desc {
  color: #e0e0e0;
  font-size: 1.15rem;
  max-width: 520px;
}
.split-content-visual svg {
  display: block;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .split-stepper, .split-content {
    min-width: 90vw !important;
    max-width: 98vw !important;
    margin-bottom: 1.5rem;
  }
  .split-content {
    align-items: center;
    text-align: center;
    min-height: 0 !important;
    padding: 1.2rem !important;
  }
}
.split-section-headline {
  text-shadow: 0 2px 24px rgba(255,147,0,0.10), 0 1.5px 12px 0 rgba(0,0,0,0.14);
}
.split-section-subheadline {
  text-shadow: 0 1px 8px rgba(255,147,0,0.06);
}
.proof-section {
  position: relative;
  z-index: 2;
}
.stat-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.soft-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255,147,0,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 1px;
  margin: 2.5rem 0 2rem 0;
}
.wall-of-trust {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.trust-card {
  background: rgba(30,30,30,0.85);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.08), 0 1.5px 12px 0 rgba(0,0,0,0.12);
  border: 1.5px solid rgba(255,147,0,0.10);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 340px;
  max-width: 420px;
  width: 100%;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  animation: fadein-up-card 0.8s forwards;
}
.fadein-1 { animation-delay: 0.2s; }
.fadein-2 { animation-delay: 0.4s; }
.fadein-3 { animation-delay: 0.6s; }
.fadein-4 { animation-delay: 0.8s; }
.fadein-5 { animation-delay: 1.0s; }
.fadein-6 { animation-delay: 1.2s; }
@keyframes fadein-up-card {
  to {
    opacity: 1;
    transform: none;
  }
}
.trust-face {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-orange);
  box-shadow: 0 2px 12px rgba(255,147,0,0.10);
  margin-bottom: 1rem;
}
.trust-quote {
  color: #fff;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.trust-name {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 1.1rem;
}
.trust-role {
  color: #e0e0e0;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .wall-of-trust .col-12 { min-width: 100vw; }
  .trust-card { min-width: 90vw; max-width: 98vw; }
}
.options-section {
  position: relative;
  z-index: 2;
  overflow: visible;
}
.journey-bg-anim {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,147,0,0.04) 0%, rgba(0,0,0,0.0) 80%);
  animation: bg-move 12s linear infinite alternate;
}
@keyframes bg-move {
  0% { background-position: 60% 40%; }
  100% { background-position: 40% 60%; }
}
.journey-path {
  position: relative;
  min-height: 220px;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.journey-svg {
  width: 100%;
  height: 180px;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.journey-card {
  background: rgba(30,30,30,0.92);
  border-radius: 1.7rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10), 0 1.5px 12px 0 rgba(0,0,0,0.14);
  border: 1.5px solid rgba(255,147,0,0.12);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  position: relative;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  animation: fadein-up-card 0.8s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  outline: none;
}
.journey-step {
  font-size: 1rem;
  color: var(--color-orange);
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}
.journey-microcopy {
  color: #e0e0e0;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
  opacity: 0.8;
}
.journey-left {
  margin-bottom: 2.5rem;
  z-index: 2;
  animation-delay: 0.2s;
}
.journey-center {
  margin-bottom: 0;
  z-index: 3;
  box-shadow: 0 8px 48px 0 rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  border: 2.5px solid var(--color-orange);
  animation-delay: 0.4s;
}
.journey-right {
  margin-bottom: 2.5rem;
  z-index: 2;
  animation-delay: 0.6s;
}
.most-popular .journey-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FF9300 0%, #e0e0e0 100%);
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.3rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(255,147,0,0.10);
  letter-spacing: 1px;
  z-index: 4;
}
.journey-icon svg {
  display: block;
  margin: 0 auto;
  stroke-width: 2.5;
  stroke: var(--color-orange);
  fill: none;
  transition: stroke 0.2s, filter 0.2s, transform 0.2s;
  filter: drop-shadow(0 0 0 rgba(255,147,0,0));
}
.journey-icon:hover svg, .journey-icon:focus svg {
  filter: drop-shadow(0 0 8px #FF9300);
  transform: scale(1.08);
  cursor: pointer;
}
.journey-title {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.journey-bullets li {
  color: #e0e0e0;
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
  text-align: left;
  position: relative;
  padding-left: 1.2em;
}
.journey-bullets li:before {
  content: '\2022';
  color: var(--color-orange);
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.btn-primary.w-100 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 0;
  border-radius: 0.8rem;
}
.journey-card:hover, .journey-card:focus {
  transform: scale(1.06) !important;
  box-shadow: 0 12px 48px 0 rgba(255,147,0,0.22), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  border-color: var(--color-orange);
}
.journey-card:focus {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}
.journey-bg-accent {
  position: absolute;
  left: 50%;
  top: 60px;
  width: 420px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(255,147,0,0.08) 0%, rgba(0,0,0,0.0) 80%);
  border-radius: 50%;
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .journey-path {
    flex-direction: column !important;
    min-height: 0;
    height: auto;
  }
  .journey-card, .journey-center {
    position: static !important;
    margin-bottom: 1.5rem !important;
    min-width: 90vw;
    max-width: 98vw;
    transform: none !important;
  }
  .journey-center { border-width: 2px; }
  .journey-svg, .journey-bg-accent, .journey-bg-anim { display: none !important; }
}
@keyframes fadein-up-card {
  to {
    opacity: 1;
    transform: none;
  }
}
/* Micro-interaction: pulse on path dots when card is hovered/focused */
.journey-card:focus ~ .journey-svg #dot1,
.journey-card:hover ~ .journey-svg #dot1 { animation: dot-pulse 1.2s infinite alternate; }
.journey-card:focus ~ .journey-svg #dot2,
.journey-card:hover ~ .journey-svg #dot2 { animation: dot-pulse 1.2s infinite alternate; }
.journey-card:focus ~ .journey-svg #dot3,
.journey-card:hover ~ .journey-svg #dot3 { animation: dot-pulse 1.2s infinite alternate; }
@keyframes dot-pulse {
  0% { filter: drop-shadow(0 0 0 #FF9300); }
  100% { filter: drop-shadow(0 0 16px #FF9300); }
} 

/* === HERO FINAL TOUCHES === */
.headline-accent-glow {
  width: 100%;
  height: 40%;
  left: 0;
  top: 50%;
  background: radial-gradient(ellipse at center, rgba(255,147,0,0.12) 0%, rgba(0,0,0,0.0) 80%);
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  position: absolute;
  animation: accent-glow-move 2.5s infinite alternate;
}
@keyframes accent-glow-move {
  0% { opacity: 0.7; filter: blur(8px); }
  100% { opacity: 1; filter: blur(16px); }
}
@media (max-width: 900px) {
  .hero-content .row {
    min-height: 0 !important;
  }
  .hero-logo {
    margin-bottom: 1.2rem !important;
  }
}
@media (min-width: 901px) {
  .sticky-cta {
    display: none;
  }
} 

/* === EXPERTS SECTION ANIMATIONS === */
.experts-section .expert-card {
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
  opacity: 1;
  transform: none;
  will-change: transform, box-shadow, opacity;
}
.experts-section .expert-card:hover, .experts-section .expert-card:focus {
  box-shadow: 0 8px 32px 0 rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  border-color: var(--color-orange);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.experts-section .expert-card .expert-face {
  transition: box-shadow 0.25s, transform 0.25s;
}
.experts-section .expert-card:hover .expert-face, .experts-section .expert-card:focus .expert-face {
  box-shadow: 0 0 32px 0 rgba(255,147,0,0.18);
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .experts-section .expert-card {
    margin-bottom: 1.2rem;
  }
} 

/* === PREMIUM TESTIMONIALS SECTION === */
.proof-section .testimonial-card {
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1), opacity 0.5s, filter 0.5s;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  will-change: transform, box-shadow, opacity;
  background: rgba(30,30,30,0.92);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10);
  border: 2px solid rgba(255,147,0,0.18);
  position: relative;
}
.proof-section .testimonial-card.in-view {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: var(--testimonial-delay, 0ms);
}
.proof-section .testimonial-card:hover, .proof-section .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  border-color: var(--color-orange);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.proof-section .quote-icon {
  pointer-events: none;
  user-select: none;
  transition: color 0.2s, opacity 0.2s;
}
.proof-section .testimonial-card:hover .quote-icon, .proof-section .testimonial-card:focus .quote-icon {
  color: rgba(255,147,0,0.22);
  opacity: 1;
}
.glowing-stat {
  text-shadow: 0 0 16px #FF9300, 0 0 32px #FF9300;
  animation: stat-glow 2.2s infinite alternate cubic-bezier(.4,0,.2,1);
}
@keyframes stat-glow {
  0% { text-shadow: 0 0 8px #FF9300, 0 0 16px #FF9300; }
  100% { text-shadow: 0 0 24px #FF9300, 0 0 48px #FF9300; }
}
@media (max-width: 900px) {
  .proof-section .testimonial-card {
    margin-bottom: 1.2rem;
  }
} 

/* === ULTRA-PREMIUM TESTIMONIALS SECTION === */
/* Premium Testimonial Card Hover Effects */
.testimonial-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 35px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,147,0,0.4), inset 0 1px 0 rgba(255,147,0,0.2);
  border-color: rgba(255,147,0,0.4);
}

.testimonial-card:hover .video-thumb-wrapper {
  transform: perspective(1000px) rotateX(0deg) scale(1.05);
  box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,147,0,0.4);
}

.testimonial-card:hover .play-btn-glow {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 20px 50px rgba(255,147,0,0.7);
}

.testimonial-card:hover .video-quote {
  color: var(--color-orange);
  transform: translateY(-5px);
  text-shadow: 0 4px 20px rgba(255,147,0,0.3);
}

.testimonial-card:hover .video-client {
  transform: translateY(-3px);
  text-shadow: 0 4px 20px rgba(255,147,0,0.4);
}

/* Premium Testimonial Section Animations */
.testimonial-card {
  animation: testimonialCardReveal 0.8s ease-out both;
}

.testimonial-card:nth-child(1) { 
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) { 
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) { 
  animation-delay: 0.3s;
}

@keyframes testimonialCardReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Premium Stats Grid Hover Effects */
.testimonials-section .glowing-stat:hover {
  transform: scale(1.1);
  text-shadow: 0 0 30px #FF9300, 0 0 60px #FF9300;
}

/* Premium Video Thumbnail Hover Effects */
.testimonial-card:hover img {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Premium Badge Hover Effects */
.testimonial-card:hover .premium-badge {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255,147,0,0.6);
}

/* === COURSES SECTION PREMIUM === */
.courses-section .course-card {
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1), opacity 0.5s;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  will-change: transform, box-shadow, opacity;
  background: rgba(30,30,30,0.92);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10);
  border: 2px solid rgba(255,147,0,0.18);
  position: relative;
}
.courses-section .course-card.in-view {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: var(--course-delay, 0ms);
}
.courses-section .course-card:hover, .courses-section .course-card:focus {
  box-shadow: 0 8px 32px 0 rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  border-color: var(--color-orange);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.courses-section .badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.3rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255,147,0,0.12);
  color: var(--color-orange);
  margin-right: 0.3rem;
  margin-bottom: 0.2rem;
}
.courses-section .course-card .badge[style*='background:var(--color-orange)'] {
  background: var(--color-orange) !important;
  color: #181818 !important;
}
@media (max-width: 900px) {
  .courses-section .course-card {
    margin-bottom: 1.2rem;
  }
} 

/* === PRICING SECTION PREMIUM CUSTOM === */
.pricing-section {
  background: linear-gradient(120deg, rgba(255,147,0,0.06) 0%, rgba(0,0,0,0.98) 100%);
  padding: 4rem 0;
  border-radius: 2rem;
  box-shadow: 0 2px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
}
.pricing-card {
  background: rgba(30,30,30,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10);
  border: 2px solid rgba(255,147,0,0.18);
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  will-change: transform, box-shadow, opacity;
}
.pricing-card.in-view {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: var(--pricing-delay, 0ms);
}
.pricing-card:hover, .pricing-card:focus {
  box-shadow: 0 8px 32px 0 rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(0,0,0,0.18);
  border-color: var(--color-orange);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.pricing-card .badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.3rem 0.9rem;
  border-radius: 1rem;
  background: var(--color-orange);
  color: #181818;
  margin-top: 0.7rem;
}
@media (max-width: 900px) {
  .pricing-card {
    margin-bottom: 1.2rem;
  }
} 

/* === FAQ SECTION PREMIUM CUSTOM === */
.faq-section {
  background: linear-gradient(120deg, rgba(255,147,0,0.08) 0%, rgba(0,0,0,0.98) 100%);
  padding: 4rem 0;
  border-radius: 2rem;
  box-shadow: 0 2px 32px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
}
/* FAQ Premium Section Styles - No Background Panel */
.faq-premium-bg {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 2rem;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}
@media (max-width: 600px) {
  .faq-premium-bg {
    padding: 1.2rem 0.2rem 0.5rem 0.2rem;
    border-radius: 1.2rem;
  }
}
.premium-faq-accordion .accordion-item {
  background: rgba(30,30,30,0.92);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10);
  border: 2px solid rgba(255,147,0,0.18);
  backdrop-filter: blur(8px);
  margin-bottom: 1.2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.premium-faq-accordion .accordion-item:hover,
.premium-faq-accordion .accordion-item:focus-within {
  box-shadow: 0 4px 32px rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(255,147,0,0.18);
  border-color: var(--color-orange);
}
.premium-faq-accordion .accordion-button {
  background: rgba(24,24,24,0.92);
  color: #e0e0e0;
  font-size: 1.18rem;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 1.2rem;
  padding: 1.2rem 2.2rem 1.2rem 1.5rem;
  box-shadow: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.premium-faq-accordion .accordion-button:focus,
.premium-faq-accordion .accordion-button:hover {
  background: rgba(30,30,30,0.98);
  color: #e0e0e0;
  box-shadow: 0 0 0 2px var(--color-orange);
}
.premium-faq-accordion .accordion-button .faq-question-text {
  flex: 1 1 auto;
  text-align: left;
}
.premium-faq-accordion .faq-chevron {
  margin-left: 1.2rem;
  display: flex;
  align-items: center;
  transition: filter 0.2s;
}
.premium-faq-accordion .faq-chevron svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-orange);
  filter: drop-shadow(0 0 8px rgba(255,147,0,0.18));
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.2s;
}
.premium-faq-accordion .accordion-button:not(.collapsed) .faq-chevron svg {
  transform: rotate(180deg);
  filter: drop-shadow(0 0 16px rgba(255,147,0,0.32));
}
.premium-faq-accordion .accordion-body {
  background: transparent;
  color: #e0e0e0;
  font-size: 1.08rem;
  border-radius: 0 0 1.2rem 1.2rem;
  padding: 1.2rem 2.2rem 1.2rem 1.5rem;
  transition: background 0.2s, color 0.2s;
}
.premium-faq-accordion .accordion-collapse {
  transition: height 0.35s cubic-bezier(.4,2,.6,1), opacity 0.25s;
}
@media (max-width: 600px) {
  .faq-premium-bg {
    padding: 1.2rem 0.2rem 0.5rem 0.2rem;
    border-radius: 1.2rem;
  }
  .premium-faq-accordion .accordion-button,
  .premium-faq-accordion .accordion-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* === FOOTER SECTION PREMIUM CUSTOM === */
.footer-section {
  background: linear-gradient(120deg, rgba(255,147,0,0.10) 0%, rgba(0,0,0,1) 100%);
  padding: 3.5rem 0 2rem 0;
  border-radius: 2rem 2rem 0 0;
  margin-top: 2rem;
  box-shadow: 0 -2px 32px rgba(255,147,0,0.08);
}
.footer-section .btn-primary {
  font-size: 1.18rem;
  font-weight: 800;
  border-radius: 1rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.10);
}
.footer-trust span {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-legal {
  color: #bdbdbd;
  font-size: 1rem;
  margin-top: 2rem;
}
.footer-legal a {
  color: var(--color-orange);
  text-decoration: underline;
  margin: 0 0.5rem;
}
@media (max-width: 900px) {
  .faq-section, .footer-section {
    padding: 2rem 0;
    border-radius: 1.2rem;
  }
  .premium-faq-accordion .accordion-button, .premium-faq-accordion .accordion-body {
    padding: 1rem 1rem;
  }
  .footer-trust {
    flex-direction: column;
    gap: 1.2rem !important;
  }
} 

/* Fix select dropdown text color in modal and dedicated form */
.modal-content select, .modal-content option,
.dedicated-form-section select, .dedicated-form-section option {
  color: #fff !important;
  background: #181818 !important;
}
.modal-content select:focus, .dedicated-form-section select:focus {
  border-color: var(--color-orange) !important;
  box-shadow: 0 0 0 2px rgba(255,147,0,0.18);
} 

/* Modern Premium Button Effects */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.22s cubic-bezier(.4,0,.2,1), transform 0.22s cubic-bezier(.4,0,.2,1), background 0.22s;
}
.btn-primary:hover, .btn-primary:focus {
  box-shadow: 0 0 0 4px rgba(255,147,0,0.18), 0 4px 32px 0 rgba(255,147,0,0.18);
  transform: scale(1.045);
  background: linear-gradient(90deg, #FF9300 90%, #e0e0e0 100%);
}
.btn-primary:active {
  box-shadow: 0 0 0 2px rgba(255,147,0,0.22), 0 2px 8px 0 rgba(255,147,0,0.18);
  transform: scale(0.97);
}
.btn-primary::after {
  content: '';
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 100%);
  transform: skewX(-20deg);
  transition: left 0.5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 2;
}
.btn-primary:hover::after, .btn-primary:focus::after {
  left: 120%;
}

/* Remove old ripple effect if present */
.btn-primary .ripple { display: none !important; }

/* Modern Card Hover Effects */
.course-card, .expert-card {
  transition: box-shadow 0.22s cubic-bezier(.4,0,.2,1), border-color 0.22s, transform 0.22s cubic-bezier(.4,0,.2,1);
}
.course-card:hover, .course-card:focus,
.expert-card:hover, .expert-card:focus {
  box-shadow: 0 8px 32px 0 rgba(255,147,0,0.18), 0 1.5px 12px 0 rgba(255,147,0,0.18);
  border-color: var(--color-orange);
  transform: translateY(-8px) scale(1.025);
}
.course-card:hover .course-icon svg, .course-card:focus .course-icon svg,
.expert-card:hover .expert-face, .expert-card:focus .expert-face {
  filter: drop-shadow(0 0 12px #FF9300) brightness(1.08);
  transform: scale(1.08);
  transition: filter 0.22s, transform 0.22s;
}
.course-card .course-icon svg, .expert-card .expert-face {
  transition: filter 0.22s, transform 0.22s;
}

/* AI Pill Pulse Animation */
.ai-pill-pulse {
  animation: ai-pill-pulse 1.6s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes ai-pill-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 16px rgba(255,147,0,0.10);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 32px 8px rgba(255,147,0,0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 16px rgba(255,147,0,0.10);
  }
}

/* === ULTRA PREMIUM HERO SECTION STYLES === */

/* Hero Main Headline Animation */
.hero-main-headline {
  animation: heroHeadlineFadeIn 1.2s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes heroHeadlineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badges Animation */
.trust-badge {
  animation: trustBadgeSlideIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.trust-badge:nth-child(1) { animation-delay: 0.2s; }
.trust-badge:nth-child(2) { animation-delay: 0.4s; }
.trust-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes trustBadgeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255,147,0,0.2);
  background: rgba(255,147,0,0.18) !important;
}

/* Hero Subheadline Animation */
.hero-subheadline {
  animation: heroSubheadlineFadeIn 1s cubic-bezier(.4,0,.2,1) 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes heroSubheadlineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Benefits Animation */
.hero-benefits li {
  animation: heroBenefitSlideIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.hero-benefits li:nth-child(1) { animation-delay: 0.5s; }
.hero-benefits li:nth-child(2) { animation-delay: 0.7s; }
.hero-benefits li:nth-child(3) { animation-delay: 0.9s; }

@keyframes heroBenefitSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Primary CTA Animation */
.hero-primary-cta {
  animation: heroCtaSlideIn 1s cubic-bezier(.4,0,.2,1) 0.8s forwards;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

@keyframes heroCtaSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-primary-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 48px rgba(255,147,0,0.35) !important;
}

.hero-primary-cta:hover .cta-shine-effect {
  left: 100%;
}

/* Secondary CTA Animation */
.hero-secondary-cta {
  animation: heroSecondaryCtaFadeIn 1s cubic-bezier(.4,0,.2,1) 1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroSecondaryCtaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-secondary-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,147,0,0.2);
}

/* Video Wrapper Animation */
.hero-video-wrapper {
  animation: heroVideoSlideIn 1.2s cubic-bezier(.4,0,.2,1) 0.4s forwards;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
}

@keyframes heroVideoSlideIn {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Video Play Overlay Animation */
.video-play-overlay {
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* General video overlay hover - for hero video */
#hero-video .video-play-overlay:hover {
  background: rgba(0,0,0,0.2) !important;
}

#hero-video .video-play-overlay:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255,147,0,0.4) !important;
  background: rgba(255,147,0,1) !important;
}

.play-button {
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* Video Stats Animation */
.video-stats {
  animation: videoStatsFadeIn 1s cubic-bezier(.4,0,.2,1) 1.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes videoStatsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Microcopy Animation */
.hero-trust-microcopy {
  animation: heroTrustMicrocopyFadeIn 1s cubic-bezier(.4,0,.2,1) 1.4s forwards;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes heroTrustMicrocopyFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-main-headline {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
    line-height: 1.1 !important;
    text-align: center;
  }
  
  .hero-subheadline {
    font-size: 1.1rem !important;
    text-align: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem !important;
  }
  
  .trust-badge {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .hero-benefits {
    margin-bottom: 2rem !important;
  }
  
  .hero-benefits li {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-primary-cta {
    width: 100% !important;
    min-width: auto !important;
    font-size: 1.1rem !important;
    padding: 1rem 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-secondary-cta {
    text-align: center;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-secondary-cta .btn {
    width: 100% !important;
    max-width: 300px;
  }
  
  .hero-video-wrapper {
    margin-top: 2rem;
    padding: 1.5rem !important;
    max-width: 100% !important;
  }
  
  .video-stats {
    flex-direction: column;
    gap: 0.5rem !important;
    text-align: center;
  }
  
  .hero-trust-microcopy {
    text-align: center;
    margin-top: 1rem !important;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .hero-main-headline {
    font-size: clamp(1.8rem, 10vw, 2.8rem) !important;
    line-height: 1.05 !important;
  }
  
  .hero-subheadline {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }
  
  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem !important;
  }
  
  .trust-badge {
    font-size: 0.8rem !important;
    padding: 0.3rem 0.6rem !important;
    width: fit-content;
  }
  
  .hero-benefits li {
    font-size: 0.95rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .hero-primary-cta {
    font-size: 1rem !important;
    padding: 0.9rem 1.5rem !important;
  }
  
  .hero-video-wrapper {
    padding: 1rem !important;
  }
  
  .video-stats {
    font-size: 0.8rem !important;
  }
}

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-main-headline {
    font-size: clamp(2.5rem, 6vw, 3.8rem) !important;
  }
  
  .hero-subheadline {
    font-size: 1.2rem !important;
  }
  
  .hero-trust-badges {
    justify-content: flex-start;
  }
  
  .hero-video-wrapper {
    max-width: 550px !important;
  }
}

/* Smooth scroll behavior for secondary CTA */
html {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.hero-primary-cta:focus,
.hero-secondary-cta .btn:focus,
.trust-badge:focus {
  outline: 3px solid rgba(255,147,0,0.5) !important;
  outline-offset: 2px !important;
}

/* === GLASS CARD STYLES === */
.glass-card {
  background: rgba(30,30,30,0.85);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,147,0,0.15);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
  border-color: rgba(255,147,0,0.3);
}

/* Expert Card Specific Styles */
.expert-card {
  height: 100%;
  min-height: 200px;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.expert-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,147,0,0.2);
}

.expert-face:hover {
  box-shadow: 0 0 24px rgba(255,147,0,0.3) !important;
  transform: scale(1.05);
}

/* Debug: Ensure expert content is visible */
.expert-info {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.expert-image-container {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Course Card Specific Styles */
.course-card {
  height: 100%;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,147,0,0.2);
}

.course-card .btn-primary {
  background: linear-gradient(135deg, var(--color-orange), #ffb347);
  border: none;
  color: #000;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.course-card .btn-primary:hover {
  background: linear-gradient(135deg, #ffb347, var(--color-orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,147,0,0.3);
}

/* === ULTRA PREMIUM EXPERTS SECTION STYLES === */

/* Expert Section Background Animations */
@keyframes expertsBgFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.03;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.06;
  }
}

@keyframes expertsBadgePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,147,0,0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255,147,0,0.1);
  }
}

@keyframes expertStatusPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,255,136,0.4);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0,255,136,0.1);
  }
}

/* Expert Card Hover Effects */
.expert-card {
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,147,0,0.1), transparent);
  transition: left 0.6s cubic-bezier(.4,0,.2,1);
}

.expert-card:hover::before {
  left: 100%;
}

.expert-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,147,0,0.3);
  border-color: rgba(255,147,0,0.4);
}

.expert-face:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 32px rgba(255,147,0,0.5) !important;
}

/* Expert Credentials Animation */
.expert-credentials span {
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.expert-card:hover .expert-credentials span {
  transform: translateY(-2px);
  background: rgba(255,147,0,0.25) !important;
  border-color: rgba(255,147,0,0.5) !important;
}

/* Expert Quote Animation */
.expert-card:hover .expert-info > div:last-child {
  background: rgba(255,147,0,0.15) !important;
  border-left-color: var(--color-orange) !important;
  transform: translateX(5px);
}

/* Staggered Animation for Expert Cards */
.expert-card:nth-child(1) { animation-delay: 0.1s; }
.expert-card:nth-child(2) { animation-delay: 0.2s; }
.expert-card:nth-child(3) { animation-delay: 0.3s; }
.expert-card:nth-child(4) { animation-delay: 0.4s; }
.expert-card:nth-child(5) { animation-delay: 0.5s; }
.expert-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Optimizations */
@media (max-width: 768px) {
  .expert-card {
    margin-bottom: 2rem;
  }
  
  .expert-face {
    width: 100px !important;
    height: 100px !important;
  }
  
  .expert-credentials {
    margin-bottom: 1rem !important;
  }
  
  .expert-credentials span {
    font-size: 0.7rem !important;
    padding: 0.2rem 0.6rem !important;
  }
}

/* === ULTRA PREMIUM COURSES SECTION STYLES === */

/* Courses Section Background Animations */
@keyframes coursesBgFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.02;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.05;
  }
}

@keyframes coursesBadgePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,147,0,0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255,147,0,0.1);
  }
}

@keyframes coursesUrgencyPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,147,0,0.3);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(255,147,0,0.1);
  }
}

/* Featured Course Hero Styles */
.featured-course-hero {
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.featured-course-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,147,0,0.1), transparent);
  transition: left 0.8s cubic-bezier(.4,0,.2,1);
}

.featured-course-hero:hover::before {
  left: 100%;
}

.featured-course-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,147,0,0.4);
}

/* Course Card Hover Effects */
.course-card {
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,147,0,0.1), transparent);
  transition: left 0.6s cubic-bezier(.4,0,.2,1);
}

.course-card:hover::before {
  left: 100%;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,147,0,0.3);
  border-color: rgba(255,147,0,0.4);
}

/* Video Preview Hover Effects */
.course-video-preview:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

/* Course video overlay hover - only for course videos */
.course-card .video-play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255,147,0,1);
}

/* Hero video overlay hover - different positioning */
#hero-video .video-play-overlay:hover {
  transform: scale(1);
}

/* Course Info Animations */
.course-card:hover .course-info h4 {
  color: var(--color-orange);
  transform: translateX(5px);
}

.course-card:hover .course-info p {
  transform: translateX(5px);
}

/* Instructor Photo Hover */
.course-card:hover .course-info img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,147,0,0.5);
}

/* Stats Animation */
.course-card:hover .course-info > div:nth-last-child(3) > div {
  transform: translateY(-2px);
  color: var(--color-orange);
}

/* Price Animation */
.course-card:hover .course-info > div:nth-last-child(2) span:first-child {
  transform: scale(1.1);
  color: #ffb347;
}

/* CTA Button Hover */
.course-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,147,0,0.4);
  background: linear-gradient(135deg, #ffb347, var(--color-orange)) !important;
}

/* Staggered Animation for Course Cards */
.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }
.course-card:nth-child(5) { animation-delay: 0.5s; }
.course-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Optimizations for Courses */
@media (max-width: 768px) {
  .featured-course-hero {
    padding: 2rem !important;
  }
  
  .featured-course-hero h3 {
    font-size: 2rem !important;
  }
  
  .course-video-preview {
    height: 150px !important;
  }
  
  .course-card {
    margin-bottom: 2rem;
  }
  
  .course-info h4 {
    font-size: 1.2rem !important;
  }
  
  .course-info p {
    font-size: 0.9rem !important;
  }
}

/* === ULTRA PREMIUM ANIMATIONS === */

/* Premium Background Float */
@keyframes premiumFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.03;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.08;
  }
}

/* Premium Shine Effect */
@keyframes premiumShine {
  0% { 
    left: -100%;
  }
  100% { 
    left: 100%;
  }
}


/* Premium Pulse Animation */
@keyframes premiumPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,147,0,0.4);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255,147,0,0.1);
  }
}

/* Ultra Premium Course Card Hover Effects */
.course-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,147,0,0.3), inset 0 1px 0 rgba(255,147,0,0.2);
  border-color: rgba(255,147,0,0.4);
}

.course-card:hover .course-video-preview {
  transform: perspective(1000px) rotateX(0deg) scale(1.05);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

.course-card:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(255,147,0,0.6);
}

.course-card:hover .course-info h4 {
  color: var(--color-orange);
  transform: translateX(5px);
  text-shadow: 0 4px 20px rgba(255,147,0,0.3);
}

.course-card:hover .course-info p {
  transform: translateX(5px);
}

/* Premium Button Hover Effects */
.course-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,147,0,0.5);
  background: linear-gradient(135deg, #ffb347, var(--color-orange)) !important;
}

/* Featured Course Hero Hover Effects */
.featured-course-hero:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,147,0,0.4), inset 0 1px 0 rgba(255,147,0,0.2);
}

.featured-course-hero:hover .featured-course-video {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,147,0,0.3);
}

/* Premium Staggered Animation for Course Cards */
.course-card:nth-child(1) { 
  animation: courseCardReveal 0.8s ease-out 0.1s both;
}
.course-card:nth-child(2) { 
  animation: courseCardReveal 0.8s ease-out 0.2s both;
}
.course-card:nth-child(3) { 
  animation: courseCardReveal 0.8s ease-out 0.3s both;
}
.course-card:nth-child(4) { 
  animation: courseCardReveal 0.8s ease-out 0.4s both;
}
.course-card:nth-child(5) { 
  animation: courseCardReveal 0.8s ease-out 0.5s both;
}
.course-card:nth-child(6) { 
  animation: courseCardReveal 0.8s ease-out 0.6s both;
}

@keyframes courseCardReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Premium Featured Course Hero Animation */
.featured-course-hero {
  animation: featuredCourseReveal 1s ease-out 0.2s both;
}

@keyframes featuredCourseReveal {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === ULTRA PREMIUM PAIN SECTION STYLES === */

/* Pain Section Background Animations */
@keyframes painBgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes painBadgePulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(255,147,0,0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(255,147,0,0.1);
    transform: scale(1.02);
  }
}

@keyframes painTimerPulse {
  0%, 100% { 
    box-shadow: 0 8px 24px rgba(255,147,0,0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 12px 32px rgba(255,147,0,0.5);
    transform: scale(1.05);
  }
}

@keyframes painClockTick {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes painClockHands {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes painClockMinuteHand {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Visual Storytelling Animations */
@keyframes painFloatWarning {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-10px) rotate(5deg); opacity: 1; }
}

@keyframes painFloatMoney {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
}

@keyframes painPaperFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(1deg); }
}

@keyframes painEyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

@keyframes painFrownWiggle {
  0%, 100% { transform: translateX(0px); }
  25% { transform: translateX(-1px); }
  75% { transform: translateX(1px); }
}

@keyframes painSweatDrop {
  0% { transform: translateY(0px); opacity: 0.8; }
  50% { transform: translateY(5px); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes painTextPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.02); opacity: 1; }
}

@keyframes painWarningPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes painStressLines {
  0%, 100% { opacity: 0.4; transform: translateY(0px); }
  50% { opacity: 0.7; transform: translateY(-2px); }
}

/* Pain Section Headlines */
.pain-main-headline {
  animation: painHeadlineSlideIn 1.2s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes painHeadlineSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pain-subheadline {
  animation: painSubheadlineFadeIn 1s cubic-bezier(.4,0,.2,1) 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes painSubheadlineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pain Points Animation */
.premium-pain-point {
  animation: painPointSlideIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.premium-pain-point:nth-child(1) { animation-delay: 0.2s; }
.premium-pain-point:nth-child(2) { animation-delay: 0.4s; }
.premium-pain-point:nth-child(3) { animation-delay: 0.6s; }

@keyframes painPointSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.premium-pain-point:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border-color: rgba(255,147,0,0.4) !important;
}

/* Premium Pain Section Hover Effects */
.pain-visual-container:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,147,0,0.3);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.pain-testimonial-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,147,0,0.2);
  border-color: rgba(255,147,0,0.5) !important;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.pain-impact-stats > div:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* Floating elements hover effects */
.floating-warning-1:hover,
.floating-warning-2:hover {
  transform: scale(1.2) rotate(10deg);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.floating-money-1:hover,
.floating-money-2:hover {
  transform: scale(1.1) translateY(-5px);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* Pain Visual Container Animation */
.pain-visual-container {
  animation: painVisualSlideIn 1.2s cubic-bezier(.4,0,.2,1) 0.4s forwards;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
}

@keyframes painVisualSlideIn {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Pain Testimonial Animation */
.pain-testimonial-premium {
  animation: painTestimonialFadeIn 1s cubic-bezier(.4,0,.2,1) 0.8s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes painTestimonialFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pain Impact Stats Animation */
.pain-impact-stats {
  animation: painStatsFadeIn 1s cubic-bezier(.4,0,.2,1) 1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes painStatsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pain Section Mobile Optimizations */
@media (max-width: 768px) {
  .pain-main-headline {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
    text-align: center;
  }
  
  .pain-subheadline {
    font-size: 1.1rem !important;
    text-align: center;
  }
  
  .pain-section-badge {
    font-size: 0.8rem !important;
    padding: 0.4rem 1rem !important;
  }
  
  .premium-pain-card {
    padding: 2rem !important;
  }
  
  .premium-pain-point {
    padding: 1.5rem !important;
  }
  
  .pain-point-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .pain-icon-premium {
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }
  
  .pain-visual-container {
    padding: 1.5rem !important;
  }
  
  .pain-impact-stats {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .pain-testimonial-premium {
    padding: 1.5rem !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .pain-main-headline {
    font-size: clamp(1.8rem, 10vw, 2.8rem) !important;
  }
  
  .pain-subheadline {
    font-size: 1rem !important;
  }
  
  .premium-pain-card {
    padding: 1.5rem !important;
  }
  
  .premium-pain-point {
    padding: 1.2rem !important;
  }
  
  .pain-visual-container {
    padding: 1rem !important;
  }
  
  .pain-urgency-timer {
    position: static !important;
    margin-bottom: 1rem !important;
    text-align: center;
  }
}

/* === ULTRA PREMIUM SOLUTION SECTION STYLES === */

/* Solution Section Background Animations */
@keyframes solutionBgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

@keyframes solutionBadgePulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(255,147,0,0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(255,147,0,0.1);
    transform: scale(1.02);
  }
}

@keyframes solutionBeforePulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(255,147,0,0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 20px rgba(255,147,0,0.1);
    transform: scale(1.05);
  }
}

@keyframes solutionAfterGlow {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(255,147,0,0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 20px rgba(255,147,0,0.1);
    transform: scale(1.05);
  }
}

@keyframes solutionArrowPulse {
  0%, 100% { 
    box-shadow: 0 8px 24px rgba(255,147,0,0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 12px 32px rgba(255,147,0,0.5);
    transform: scale(1.05);
  }
}

/* Solution Section Headlines */
.solution-main-headline {
  animation: solutionHeadlineSlideIn 1.2s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes solutionHeadlineSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-subheadline {
  animation: solutionSubheadlineFadeIn 1s cubic-bezier(.4,0,.2,1) 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes solutionSubheadlineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Solution Visual Container Animation */
.transformation-comparison {
  animation: solutionVisualSlideIn 1.2s cubic-bezier(.4,0,.2,1) 0.4s forwards;
  opacity: 0;
  transform: translateX(-40px) scale(0.95);
}

@keyframes solutionVisualSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Solution Benefits Animation */
.benefit-item {
  animation: solutionBenefitSlideIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
  transform: translateX(30px);
}

.benefit-item:nth-child(1) { animation-delay: 0.6s; }
.benefit-item:nth-child(2) { animation-delay: 0.8s; }
.benefit-item:nth-child(3) { animation-delay: 1s; }

@keyframes solutionBenefitSlideIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.benefit-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border-color: rgba(255,147,0,0.4) !important;
}

/* Solution Testimonial Animation */
.solution-testimonial {
  animation: solutionTestimonialFadeIn 1s cubic-bezier(.4,0,.2,1) 1.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes solutionTestimonialFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,147,0,0.2);
  border-color: rgba(255,147,0,0.5) !important;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* Solution Section Mobile Optimizations */
@media (max-width: 768px) {
  .solution-main-headline {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
    text-align: center;
  }
  
  .solution-subheadline {
    font-size: 1.1rem !important;
    text-align: center;
  }
  
  .solution-section-badge {
    font-size: 0.8rem !important;
    padding: 0.4rem 1rem !important;
  }
  
  .transformation-comparison {
    padding: 2rem !important;
  }
  
  .benefit-item {
    padding: 1.5rem !important;
  }
  
  .solution-testimonial {
    padding: 1.5rem !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .solution-main-headline {
    font-size: clamp(1.8rem, 10vw, 2.8rem) !important;
  }
  
  .solution-subheadline {
    font-size: 1rem !important;
  }
  
  .transformation-comparison {
    padding: 1.5rem !important;
  }
  
  .benefit-item {
    padding: 1.2rem !important;
  }
  
  .solution-testimonial {
    padding: 1.2rem !important;
  }
} 

/* Section Fade Animations */
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section-fade.in-view {
  opacity: 1;
  transform: none;
}

/* Fade-in-left for pain/problem section */
.pain-section.section-fade {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.pain-section.section-fade.in-view {
  opacity: 1;
  transform: none;
}

/* Fade-in-right for pricing section */
.pricing-section.section-fade {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.pricing-section.section-fade.in-view {
  opacity: 1;
  transform: none;
}

/* Staggered fade-in-up for cards */
.courses-section .course-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.courses-section .course-card.in-view {
  opacity: 1;
  transform: none;
} 


/* Ultra-Premium Modal Styles - $50K+ Agency Grade */
.ultra-premium-modal .modal-dialog {
  max-width: 600px;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.ultra-modal-content {
  background: linear-gradient(135deg, rgba(12,12,12,0.98) 0%, rgba(24,24,24,0.95) 50%, rgba(18,18,18,0.98) 100%);
  backdrop-filter: blur(30px);
  border-radius: 2.5rem;
  border: 1px solid rgba(255,147,0,0.2);
  box-shadow: 
    0 25px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,147,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  animation: modalEntrance 0.4s ease-out forwards;
}

@keyframes modalEntrance {
  0% { 
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  100% { 
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Animated Background Pattern */
.modal-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,147,0,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,147,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255,147,0,0.08) 0%, transparent 50%);
  animation: patternFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes patternFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Premium Close Button */
.ultra-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.ultra-close-btn:hover {
  background: rgba(255,147,0,0.2);
  border-color: rgba(255,147,0,0.3);
  color: #fff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(255,147,0,0.3);
}

/* Modal Header */
.ultra-modal-header {
  background: transparent;
  border: none;
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  text-align: center;
  position: relative;
}

.modal-icon-container {
  margin-bottom: 1.5rem;
}

.modal-icon-glow {
  display: inline-block;
  position: relative;
  animation: iconPulse 3s ease-in-out infinite;
}

.icon-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid rgba(255,147,0,0.3);
  border-radius: 50%;
  animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-inner {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FF9300, #ffb347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 8px 32px rgba(255,147,0,0.4);
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 0 20px rgba(255,147,0,0.6)); 
  }
  50% { 
    transform: scale(1.05); 
    filter: drop-shadow(0 0 30px rgba(255,147,0,0.8)); 
  }
}


/* Modal Title */
.ultra-modal-header .modal-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(135deg, #FF9300, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

/* Value Propositions */
.modal-value-props {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.value-prop svg {
  color: #FF9300;
  flex-shrink: 0;
}

/* Modal Body */
.ultra-modal-body {
  padding: 0 2.5rem 2rem 2.5rem;
}

/* Form Layout */
.ultra-lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.ultra-lead-form .form-group {
  position: relative;
}

.ultra-lead-form .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.label-text {
  color: #fff;
}

.required-asterisk {
  color: #FF9300;
  font-weight: 800;
}

.optional-text {
  color: #888;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Input Wrapper */
.input-wrapper {
  position: relative;
}

.ultra-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 1.2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.ultra-input:focus {
  outline: none;
  border-color: #FF9300;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(255,147,0,0.15);
  transform: translateY(-2px);
}

.ultra-input::placeholder {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

/* Input Glow Effect */
.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,147,0,0.1), rgba(255,147,0,0.05));
  border-radius: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.ultra-input:focus + .input-glow {
  opacity: 1;
}

/* Form Footer */
.form-footer {
  margin-top: 1.5rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item svg {
  color: #FF9300;
  flex-shrink: 0;
}

/* Ultra Submit Button */
.ultra-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #FF9300 0%, #ffb347 50%, #FF9300 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  animation: buttonGradient 3s ease-in-out infinite;
}

@keyframes buttonGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ultra-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,147,0,0.4);
  background-position: 100% 50%;
}

.ultra-submit-btn:active {
  transform: translateY(-1px);
}

.btn-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.btn-text {
  font-size: 1.1rem;
  font-weight: 800;
}

.btn-subtext {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.8s ease;
  z-index: 2;
}

.ultra-submit-btn:hover .btn-shine {
  left: 100%;
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.ultra-submit-btn:hover .btn-particles {
  opacity: 1;
}

/* Success Message */
.ultra-success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-animation {
  position: relative;
  margin-bottom: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  animation: successBounce 0.8s cubic-bezier(0.68,-0.55,0.265,1.55);
}

@keyframes successBounce {
  0% { transform: scale(0) rotate(180deg); }
  50% { transform: scale(1.2) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.success-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,147,0,0.3) 0%, transparent 70%);
  animation: particleFloat 2s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.ultra-success-message h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FF9300, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ultra-success-message p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.redirect-timer {
  color: #FF9300 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.5rem !important;
  text-align: center;
}

#countdown {
  font-weight: 800;
  color: #ffb347;
}

.ultra-redirect-btn {
  background: linear-gradient(135deg, #FF9300 0%, #ffb347 100%);
  color: #000;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.ultra-redirect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,147,0,0.4);
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ultra-premium-modal .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100vw - 1rem);
  }
  
  .ultra-modal-header {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  
  .ultra-modal-body {
    padding: 0 1.5rem 2rem 1.5rem;
  }
  
  .ultra-modal-header .modal-title {
    font-size: 1.8rem;
  }
  
  .ultra-lead-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .ultra-input {
    padding: 1rem 1.2rem;
  }
  
  .ultra-submit-btn {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modal-value-props {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .value-prop {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .ultra-modal-content {
    border-radius: 2rem;
  }
  
  .ultra-modal-header {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .ultra-modal-body {
    padding: 0 1rem 1.5rem 1rem;
  }
  
  .ultra-close-btn {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

.premium-input,
.premium-input:focus {
  color: #fff;
}
.premium-input::placeholder {
  color: #fff;
  opacity: 0.85;
}

/* Enhanced Mobile Optimization - 576px and below */
@media (max-width: 576px) {
  /* Hero Section Mobile */
  .hero-section {
    padding: 2rem 0 !important;
  }
  
  .hero-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-subheadline {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-benefits li {
    font-size: 0.95rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .hero-primary-cta {
    font-size: 1rem !important;
    padding: 0.9rem 1.5rem !important;
  }
  
  /* Pain Section Mobile */
  .pain-section {
    padding: 3rem 0 !important;
  }
  
  .pain-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .pain-subheadline {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .pain-point-card {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .pain-point-card h4 {
    font-size: 1.2rem !important;
  }
  
  .pain-point-card p {
    font-size: 0.95rem !important;
  }
  
  .pain-point-card {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .pain-point-card h4 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .pain-point-card .pain-stat {
    font-size: 0.9rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  /* Solution Section Mobile */
  .solution-section {
    padding: 3rem 0 !important;
  }
  
  .solution-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .solution-subheadline {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .solution-transformation-card {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .solution-transformation-card h4 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .solution-transformation-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
  .solution-transformation-card .transformation-badge {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Courses Section Mobile */
  .courses-section {
    padding: 3rem 0 !important;
  }
  
  .courses-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .courses-subheadline {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .featured-course-hero {
    padding: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
  
  .featured-course-hero h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .course-video-preview {
    height: 180px !important;
    margin-bottom: 1rem !important;
  }
  
  .course-card {
    margin-bottom: 2rem !important;
  }
  
  .course-card .card-body {
    padding: 1.5rem !important;
  }
  
  .course-card h4 {
    font-size: 1.3rem !important;
  }
  
  .course-card p {
    font-size: 0.95rem !important;
  }
  
  .course-card .card-body {
    padding: 1.5rem !important;
  }
  
  .course-card h4 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }
  
  .course-card .course-duration {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .course-card .course-price {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* Group Discount Section Mobile */
  .group-discount-section {
    padding: 3rem 0 !important;
  }
  
  .group-discount-card {
    padding: 2rem !important;
  }
  
  .group-discount-card h3 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .group-discount-card p {
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .group-discount-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
  
  .group-discount-item {
    padding: 1.5rem !important;
  }
  
  .group-discount-item .discount-number {
    font-size: 2rem !important;
  }
  
  .group-discount-item .discount-label {
    font-size: 0.9rem !important;
  }
  
  .group-discount-item .discount-percentage {
    font-size: 1.2rem !important;
  }
  
  .group-discount-value-props {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
  }
  
  .group-discount-value-props > div {
    width: 100% !important;
    max-width: 250px !important;
  }
  
  /* Cold Traffic Risk Reversal Mobile */
  .cold-traffic-risk-reversal {
    padding: 2rem !important;
    margin-bottom: 2rem !important;
  }
  
  .cold-traffic-risk-reversal h4 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .cold-traffic-risk-reversal > div:last-child > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .cold-traffic-risk-reversal > div:last-child > div:first-child > div {
    padding: 1.2rem !important;
  }
  
  .cold-traffic-risk-reversal > div:last-child > div:first-child > div > div:first-child {
    font-size: 1.1rem !important;
  }
  
  .cold-traffic-risk-reversal > div:last-child > div:first-child > div > div:last-child {
    font-size: 0.9rem !important;
  }
  
  .cold-traffic-risk-reversal p {
    font-size: 1rem !important;
  }
  
  /* Cold Traffic Social Proof Mobile */
  .cold-traffic-social-proof {
    padding: 3rem 0 !important;
  }
  
  .cold-traffic-social-proof h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .cold-traffic-social-proof > div > div > div:first-child p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .social-proof-stat {
    padding: 1.5rem 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .social-proof-stat > div:last-child > div:first-child {
    font-size: 2rem !important;
  }
  
  .social-proof-stat > div:last-child > div:last-child {
    font-size: 0.9rem !important;
  }
  
  .cold-traffic-social-proof > div > div > div:last-child > div:first-child {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .cold-traffic-social-proof > div > div > div:last-child > div:first-child > div {
    font-size: 0.9rem !important;
  }
  
  .cold-traffic-social-proof > div > div > div:last-child p {
    font-size: 1rem !important;
  }
  
  /* Psychological Trigger Section Mobile */
  .psychological-trigger-section {
    padding: 3rem 0 !important;
  }
  
  .psychological-trigger-section h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .psychological-trigger-section > div > div > div:first-child p {
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .psychological-trigger-card {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .psychological-trigger-card > div:last-child > div:first-child {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .psychological-trigger-card h4 {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .psychological-trigger-card p {
    font-size: 0.95rem !important;
  }
  
  .psychological-trigger-section > div > div > div:last-child > div:first-child {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .psychological-trigger-section > div > div > div:last-child > div:first-child h3 {
    font-size: 1.4rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .psychological-trigger-section > div > div > div:last-child > div:first-child p {
    font-size: 1rem !important;
  }
  
  .psychological-trigger-section > div > div > div:last-child > div:last-child {
    font-size: 1.2rem !important;
    padding: 1rem 2rem !important;
  }
  
  /* CRO Objection Section Mobile */
  .cro-objection-section {
    padding: 3rem 0 !important;
  }
  
  .cro-objection-section h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .cro-objection-section > div > div > div:first-child p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .objection-card {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .objection-card > div:last-child > div:first-child {
    flex-direction: column !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
  }
  
  .objection-card > div:last-child > div:first-child > div:first-child {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
    margin-right: 0 !important;
    margin-bottom: 0.8rem !important;
  }
  
  .objection-card h4 {
    font-size: 1.1rem !important;
  }
  
  .objection-card p {
    font-size: 0.95rem !important;
  }
  
  .cro-objection-section > div > div > div:last-child > div:first-child {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .cro-objection-section > div > div > div:last-child > div:first-child h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .cro-objection-section > div > div > div:last-child > div:first-child p {
    font-size: 1rem !important;
  }
  
  .cro-objection-section > div > div > div:last-child > div:last-child {
    font-size: 1.3rem !important;
    padding: 1.2rem 2.5rem !important;
  }
  
  /* Cold Traffic Urgency Section Mobile */
  .cold-traffic-urgency-section {
    padding: 3rem 0 !important;
  }
  
  .cold-traffic-urgency-section h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .cold-traffic-urgency-section > div > div > div:first-child p {
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .urgency-stat-card {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .urgency-stat-card > div:last-child > div:first-child {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .urgency-stat-card h4 {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .urgency-stat-card p {
    font-size: 0.95rem !important;
  }
  
  .cold-traffic-urgency-section > div > div > div:last-child > div:first-child {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .cold-traffic-urgency-section > div > div > div:last-child > div:first-child h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .cold-traffic-urgency-section > div > div > div:last-child > div:first-child p {
    font-size: 1rem !important;
  }
  
  .cold-traffic-urgency-section > div > div > div:last-child > div:last-child {
    font-size: 1.3rem !important;
    padding: 1.2rem 2.5rem !important;
  }
  
  /* Testimonials Section Mobile */
  .testimonials-section {
    padding: 3rem 0 !important;
  }
  
  .testimonials-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .testimonials-subheadline {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .testimonial-card {
    margin-bottom: 2rem !important;
  }
  
  .testimonial-card .card-body {
    padding: 1.5rem !important;
  }
  
  .testimonial-card h5 {
    font-size: 1.2rem !important;
  }
  
  .testimonial-card p {
    font-size: 0.95rem !important;
  }
  
  .testimonial-card .card-body {
    padding: 1.5rem !important;
  }
  
  .testimonial-card h5 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .testimonial-card .testimonial-quote {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
  /* FAQ Section Mobile */
  .faq-section {
    padding: 3rem 0 !important;
  }
  
  .faq-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .faq-subheadline {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .accordion-button {
    font-size: 1rem !important;
    padding: 1rem !important;
  }
  
  .accordion-body {
    padding: 1rem !important;
    font-size: 0.95rem !important;
  }
  
  /* Conversion Form Section Mobile */
  .conversion-form-section {
    padding: 3rem 0 !important;
  }
  
  .conversion-form-main-headline {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .conversion-form-subheadline {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .conversion-form-card {
    padding: 2rem !important;
  }
  
  .conversion-form-card h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .conversion-form-card p {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .form-control {
    font-size: 1rem !important;
    padding: 0.8rem !important;
    margin-bottom: 1rem !important;
  }
  
  .form-select {
    font-size: 1rem !important;
    padding: 0.8rem !important;
    margin-bottom: 1rem !important;
  }
  
  .conversion-form-cta {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 1rem !important;
  }
  
  /* Modal Mobile */
  .ultra-premium-modal .modal-dialog {
    margin: 0.25rem !important;
    max-width: calc(100vw - 0.5rem) !important;
  }
  
  .ultra-modal-header {
    padding: 1.5rem 1rem !important;
  }
  
  .ultra-modal-body {
    padding: 1rem !important;
  }
  
  .ultra-modal-footer {
    padding: 1rem !important;
  }
  
  .ultra-modal-header h2 {
    font-size: 1.5rem !important;
  }
  
  .ultra-modal-header p {
    font-size: 0.95rem !important;
  }
  
  .ultra-modal-body .form-control {
    font-size: 0.95rem !important;
    padding: 0.7rem !important;
  }
  
  .ultra-modal-body .form-select {
    font-size: 0.95rem !important;
    padding: 0.7rem !important;
  }
  
  .ultra-modal-cta {
    width: 100% !important;
    font-size: 0.95rem !important;
    padding: 0.9rem !important;
  }
  
  /* Utility Classes Mobile */
  .mb-6 {
    margin-bottom: 3rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2.5rem !important;
  }
  
  .mb-4 {
    margin-bottom: 2rem !important;
  }
  
  .mb-3 {
    margin-bottom: 1.5rem !important;
  }
  
  .py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  
  /* Cold Traffic Urgency Banner Mobile */
  .cold-traffic-urgency-banner {
    padding: 1.5rem !important;
    margin: 1.5rem auto 0 !important;
  }
  
  .cold-traffic-urgency-banner > div:first-child {
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .countdown-timer {
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
    justify-content: center !important;
  }
  
  .countdown-item {
    min-width: 50px !important;
    padding: 0.6rem 0.8rem !important;
  }
  
  .countdown-item > div:first-child {
    font-size: 1.4rem !important;
  }
  
  .countdown-item > div:last-child {
    font-size: 0.7rem !important;
  }

  /* Hero Video Mobile */
  .hero-video-container {
    margin-top: 2rem !important;
  }
  
  .hero-video-container iframe {
    height: 200px !important;
    border-radius: 1rem !important;
  }
  
  /* Touch-friendly buttons */
  .btn {
    min-height: 44px !important;
    min-width: 44px !important;
  }
  
  /* Better spacing for mobile */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Improved readability */
  p, li {
    line-height: 1.6 !important;
  }
  
  /* Better form inputs */
  .form-control, .form-select {
    min-height: 44px !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
}
