/* === 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 === */
: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;
}

/* 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: 0;
  transform: translateY(32px) scale(0.98);
  will-change: transform, box-shadow, opacity;
}
.experts-section .expert-card.in-view {
  opacity: 1;
  transform: none;
  transition-delay: var(--expert-delay, 0ms);
}
.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;
  }
} 

/* === 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);
  }
} 

/* 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,
.experts-section .expert-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,
.experts-section .expert-card.in-view {
  opacity: 1;
  transform: none;
} 

.premium-lead-modal .modal-content {
  background: rgba(24,24,24,0.98);
  backdrop-filter: blur(20px);
  border-radius: 2.2rem;
  box-shadow: 0 12px 64px 0 rgba(255,147,0,0.22), 0 2px 16px 0 rgba(0,0,0,0.18);
  border: 2.5px solid rgba(255,147,0,0.22);
  padding: 0 0 0.5rem 0;
}
.premium-lead-modal .modal-header {
  border-bottom: none;
  background: transparent;
  flex-direction: column;
  align-items: center;
}
.premium-lead-modal .modal-accent-glow svg {
  animation: accentPulse 2.2s infinite alternate;
}
@keyframes accentPulse {
  0% { filter: drop-shadow(0 0 8px #FF9300AA); }
  100% { filter: drop-shadow(0 0 24px #e0e0e0AA); }
}
.premium-lead-modal .modal-title {
  color: #e0e0e0;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}
.premium-lead-modal .modal-microcopy {
  color: #bdbdbd;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.premium-lead-modal .btn-close {
  filter: invert(1);
}
.premium-lead-modal .form-label {
  color: #fff;
  font-weight: 700;
}
.premium-lead-modal .premium-input {
  background: rgba(30,30,30,0.92);
  color: #fff;
  border-radius: 1.1rem;
  border: 2px solid #e0e0e0;
  font-size: 1.15rem;
  box-shadow: none;
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.premium-lead-modal .premium-input:focus {
  border-color: #FF9300;
  box-shadow: 0 0 0 2px rgba(255,147,0,0.18);
  outline: none;
}
.premium-lead-modal .form-control.is-invalid {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 2px rgba(255,59,59,0.18);
}
.premium-lead-modal .btn-primary.premium-btn-gradient {
  background: linear-gradient(90deg, #FF9300 0%, #e0e0e0 100%);
  color: #181818;
  font-weight: 900;
  border: none;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(255,147,0,0.18);
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.premium-lead-modal .btn-primary.premium-btn-gradient:hover, .premium-lead-modal .btn-primary.premium-btn-gradient:focus {
  background: linear-gradient(90deg, #e0e0e0 0%, #FF9300 100%);
  color: #181818;
  box-shadow: 0 8px 48px rgba(255,147,0,0.22);
}
.premium-lead-modal .btn-shine {
  animation: btnShineMove 2.2s infinite linear;
  pointer-events: none;
}
@keyframes btnShineMove {
  0% { left: -75%; }
  100% { left: 120%; }
}
.premium-lead-modal .form-success-message {
  color: #e0e0e0;
  font-size: 1.18rem;
  font-weight: 800;
  text-align: center;
  margin-top: 1.2rem;
}
.premium-modal-card {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 2.4rem;
  padding: 0 0 0.5rem 0;
}
.premium-lead-modal .modal-header {
  padding: 0;
  margin-bottom: 0.5rem;
}
.premium-lead-modal .modal-body {
  padding: 0.5rem 2.2rem 1.2rem 2.2rem;
}
.premium-lead-modal .row.g-3 {
  margin-left: 0;
  margin-right: 0;
}
.premium-lead-modal .col-md-6 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.premium-lead-modal .form-label {
  margin-bottom: 0.3rem;
  font-size: 1.04rem;
}
.premium-lead-modal .premium-input {
  padding: 0.85rem 1.1rem;
  font-size: 1.08rem;
  border-radius: 1.1rem;
  margin-bottom: 0.1rem;
}
.premium-lead-modal .form-select.premium-input {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.premium-lead-modal .btn-primary.premium-btn-gradient {
  padding: 1rem 0;
  font-size: 1.13rem;
  border-radius: 1.2rem;
}
.premium-lead-modal .premium-close-btn {
  background: #232323;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.18s;
}
.premium-lead-modal .premium-close-btn:hover {
  opacity: 1;
  background: #181818;
}
@media (max-width: 768px) {
  .premium-modal-card {
    max-width: 98vw;
    border-radius: 1.3rem;
    padding: 0 0.2rem 0.5rem 0.2rem;
  }
  .premium-lead-modal .modal-body {
    padding: 0.5rem 0.7rem 1.2rem 0.7rem;
  }
  .premium-lead-modal .row.g-3 {
    row-gap: 0.7rem;
  }
}
@media (max-width: 576px) {
  .premium-modal-card {
    max-width: 99vw;
    border-radius: 1rem;
    padding: 0 0.1rem 0.3rem 0.1rem;
  }
  .premium-lead-modal .modal-body {
    padding: 0.3rem 0.2rem 0.7rem 0.2rem;
  }
  .premium-lead-modal .form-label {
    font-size: 0.98rem;
  }
} 

.premium-input,
.premium-input:focus {
  color: #fff;
}
.premium-input::placeholder {
  color: #fff;
  opacity: 0.85;
} 
