/* ============================================
   BEAUTIFUL ANIMATED PRELOADER
   ============================================ */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
}

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

.preloader-text {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.8;
}

.loading-dots {
  display: inline-block;
  margin-left: 0.5rem;
}

.loading-dots span {
  animation: blink 1.4s infinite both;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/* ============================================
   END PRELOADER
   ============================================ */



:root {
  --bg: #0b0f1a;
  --card: #121826;
  --border: rgba(100,115,140,0.35);
  --muted: #94a3b8;
  --accent: #dc2626; /* deep red accent */
}



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

body { 
  font-family:'Montserrat',sans-serif; 
  background: #0b0f1a; /* Dark background for all pages */
  color:#fff;
  margin: 0;
  padding: 0;
}

.page {
  min-height: 100vh;
  background: transparent;
}

/* NAV */
.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.7), transparent);
  border-bottom: 1px solid rgba(30,64,175,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle { width:auto; height:auto; border:none; box-shadow:none; }

.logo-text {
  display: grid;
  gap: 0.1rem;
}

.logo-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 32px;
    z-index: 9999;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-link {
  font-size: 1rem;
  color: #e5e7eb;
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.nav-link:hover {
  background: rgba(15,23,42,0.9);
}

.nav-btn {
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(248,250,252,0.35);
  text-decoration: none;
  color: #e5e7eb;
}

.nav-btn-primary {
  background: linear-gradient(to right, #ef4444, #f97316);
  border-color: transparent;
  color: #f9fafb;
  box-shadow: 0 0 20px rgba(248,113,113,0.55);
}

.nav-btn-primary:hover {
  filter: brightness(1.05);
}

/* Mobile nav */
.mobile-nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.95);
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.mobile-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 2px 0;
}

.mobile-nav-panel {
  display: none;
  flex-direction: column;
  padding: 0.4rem 1.5rem 0.8rem;
  gap: 0.45rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
  border-bottom: 1px solid rgba(30,64,175,0.4);
}

.mobile-nav-panel .nav-link,
.mobile-nav-panel .nav-btn {
  width: 100%;
  text-align: left;
}

/* HERO */
.hero-banner {
  position: relative;
  height: clamp(320px, 60vh, 460px);
  overflow: hidden;
  will-change: transform;
  
  padding-bottom: 4rem;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15,23,42,0.15), rgba(15,23,42,0.9)),
              linear-gradient(to bottom, rgba(15,23,42,0.1), rgba(15,23,42,0.95));
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-copy {
  max-width: 560px;
  text-align: left;
}

.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: #cbd5f5;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(148,163,184,0.6);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  border-color: transparent;
  background: #dc2626 !important;
  box-shadow: 0 0 18px rgba(220,38,38,0.35);
  font-weight: 600;
  color:#fff !important;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost:hover {
  background: rgba(15,23,42,0.95);
}

/* Sections */
.section {
  padding: 2.8rem 0 0;
}

.section.boxed {
    margin-top: 2.5rem;   /* add space above Program snapshot */
}

.boxed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2.4rem;
}

.section-heading {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.section-heading.center {
  text-align: center;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.4rem;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Program snapshot */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.snapshot-item {
  background: rgba(15,23,42,0.4);
  border-radius: 16px;
  border: 1px solid rgba(30,64,175,0.3);
  padding: 1rem 1.1rem;
}

.snapshot-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  background: rgba(15,23,42,0.3);
  border-radius: 16px;
  border: 1px solid rgba(55,65,81,0.4);
  padding: 1.05rem 1.1rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-size: 0.9rem;
  color: rgba(148,163,184,0.9);
}

/* Pricing */
.pricing-section {
  padding-top: 2.8rem;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
  background: rgba(15,23,42,0.3);
  border-radius: 20px;
  border: 1px solid rgba(30,64,175,0.4);
  padding: 1.6rem 1.7rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.checklist li + li {
  margin-top: 0.25rem;
}

.pricing-cta {
  display: grid;
  gap: 0.5rem;
  justify-items: flex-start;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-main {
  font-size: 1.8rem;
  font-weight: 700;
}

.price-sub {
  font-size: 1rem;
  color: var(--muted);
}

.btn-wide {
  width: 100%;
  justify-content: center;
}

.payment-row {
  margin-top: 0.2rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.payment-pill {
  border-radius: 999px;
  border: 1px solid rgba(55,65,81,0.9);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.payment-pill i {
  font-size: 0.9rem;
}

.icon-revolut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  color: #f9fafb;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Coach section */
.coach-section {
  padding-bottom: 3rem;
}

.coach-row {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.coach-avatar {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(248,250,252,0.16);
  flex-shrink: 0;
}

.coach-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coach-bio {
  flex: 1;
  max-width: 640px;
}

.coach-name {
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
}

.coach-subtitle {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--muted);
}

.coach-bio p {
  font-size: 0.87rem;
}

.coach-social {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.coach-social a {
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  border: 1px solid rgba(55,65,81,0.9);
  text-decoration: none;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.coach-social a:hover {
  border-color: var(--accent);
  background: rgba(248,113,113,0.15);
}

.coach-training {
  margin-top: 1.4rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(30,64,175,0.6);
}

.coach-training img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(30,64,175,0.5);
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
}

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

/* Utilities */
.muted {
  color: var(--muted);
}

.small {
  font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 32px;
    z-index: 9999;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
  .mobile-nav-toggle {
    display: inline-flex;
  }
  .hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
  .pricing-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .coach-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .coach-bio {
    max-width: 100%;
  }
  .coach-social {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding-inline: 1rem;
  }
  .boxed {
    padding-inline: 1rem;
  }
  .hero-banner {
    height: clamp(260px, 55vh, 380px);
  }
}


/* --- Custom color adjustments added --- */

:root {
  --bg: #0b0f1a;
  --card: #121826;
  --border: rgba(100,115,140,0.35);
  --muted: #94a3b8;
  --accent: #dc2626; /* deep red accent */
}

/* Removed duplicate body style - using main definition above */

.nav-btn-primary,
.btn-primary {
  border-color: transparent;
  background: #dc2626 !important;
  box-shadow: 0 0 18px rgba(220,38,38,0.35);
  font-weight: 600;
  color:#fff !important;
}

/* Removed duplicate snapshot-item and step-card styles - using cleaner versions above */

/* Removed duplicate pricing-card style - using cleaner version above */

.coach-social a:hover {
  border-color: var(--accent);
  background: rgba(220,38,38,0.15);
}

.site-footer {
  border-top: 1px solid rgba(75,85,99,0.7);
}

.muted {
  color: var(--muted);
}


/* === Page Fade Transition === */
/* Removed duplicate body style */

body.fade-in {
  opacity: 1;
}


/* === Page Fade Transition (fixed version) === */
/* Removed duplicate body style */

body:not(.fade-in) {
  opacity: 0;
}


/* === Page Fade Transition (final version) === */
/* Removed duplicate body style */

body.fade-out {
  opacity: 0;
}


/* === Simplified Reliable Fade-In Animation === */
/* Removed duplicate body style */

body.loaded {
  opacity: 1;
}


.hero-banner + section {
    margin-top: 2.5rem;
}


.snapshot-item, .step-box {
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.snapshot-item:hover, .step-box:hover {
    transform: translateY(-6px) scale(1.03);
    background-color: rgba(220,38,38,0.15);
    border-color: rgba(220,38,38,0.5);
}


/* Enhanced hover effects */
.snapshot-item, .step-box {
    transition: transform 0.3s ease, background-color 0.3s ease, 
                box-shadow 0.3s ease, border-color 0.3s ease;
}

.snapshot-item:hover, .step-box:hover {
    transform: translateY(-8px) scale(1.05);
    background-color: rgba(220,38,38,0.18);
    border-color: rgba(220,38,38,0.6);
    box-shadow: 0 12px 28px rgba(220,38,38,0.35);
}

/* Subtle gradient on hover */
.snapshot-item:hover::before, .step-box:hover::before {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at center, rgba(220,38,38,0.25), transparent 70%);
    pointer-events:none;
}

/* Fade-in animation for sections */
section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}


/* Enhanced hover for pricing and other boxes */
.step-card, .payment-pill {
    transition: transform 0.3s ease, background-color 0.3s ease,
                box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.step-card:hover, .payment-pill:hover {
    transform: translateY(-6px) scale(1.04);
    background-color: rgba(220,38,38,0.15);
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 10px 20px rgba(220,38,38,0.25);
}


/* Animated nav links */
.nav-link {
    transition: color 0.25s ease, transform 0.25s ease;
}
.nav-link:hover {
    transform: translateY(-3px);
    color: var(--accent);
}

/* Logo hover */
.logo-circle { width:auto; height:auto; border:none; box-shadow:none; }
.logo-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(220,38,38,0.4);
}


/* Mobile nav improvements */
@media (max-width: 768px) {
    .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    padding-right: 60px; /* Space for fixed burger */
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
    .mobile-nav-toggle {
        display: block;
        font-size: 1.6rem;
        cursor: pointer;
    }
    .mobile-nav-menu {
        display: none;
        flex-direction: column;
        background: var(--card);
        padding: 1rem;
        border-radius: 0.75rem;
        margin-top: 0.5rem;
    }
    .mobile-nav-menu.open {
        display: flex;
    }
    .mobile-nav-menu a {
        padding: 0.6rem;
        border-radius: 0.5rem;
        transition: background 0.2s ease;
    }
    .mobile-nav-menu a:hover {
        background: rgba(220,38,38,0.2);
    }
    
    /* Keep text smaller on mobile */
    .nav-title{font-size:0.7rem;}
    .nav-sub{font-size:0.65rem;}
    .nav-logo{width:35px;height:35px;}
}


/* Hamburger animation */
.mobile-nav-toggle {
    transition: transform 0.3s ease;
}
.mobile-nav-toggle.active {
    transform: rotate(90deg);
}



/* Mobile menu backdrop */
@media (max-width: 768px) {
    .mobile-nav-menu {
        background: rgba(15,23,42,0.9);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.1);
    }
}


/* Button hover animations */
.btn, .btn-primary, .btn-ghost {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover, .btn-primary:hover, .btn-ghost:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 18px rgba(220,38,38,0.35);
    background-color: rgba(220,38,38,0.25);
}


/* Logo hover animation */
.site-logo {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.site-logo:hover {
    transform: scale(1.1);
}



@media (min-width: 769px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}


.mobile-nav-menu a {
    opacity: 0;
    transform: translateY(10px);
    animation: menuFadeSlide 0.3s forwards;
}

.mobile-nav-menu.open a {
    animation-delay: 0.1s;
}

@keyframes menuFadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Dark/Light theme root vars */
:root {
    --bg: #0f172a;
    --text: #ffffff;
}
.light-mode {
    --bg: #ffffff;
    --text: #0f172a;
}

/* Removed duplicate body style */

/* Toggle button */
.theme-toggle {
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    text-align:center;
    cursor:pointer;
    transition: background .3s ease;
}
.theme-toggle:hover {
    background: rgba(255,255,255,0.2);
}





/* Full mobile menu slide-down panel */
.mobile-nav-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform-origin: top;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-menu.open {
    max-height: 400px; /* adjust based on content */
    opacity: 1;
    transform: translateY(0);
}


/* REAL mobile dropdown panel */
.mobile-nav-menu {
    position: absolute;
    top: 70px; /* below navbar */
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(6px);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform-origin: top;
    transform: translateY(-20px);
    transition: max-height .4s ease, opacity .3s ease, transform .35s ease;
    z-index: 999;
}

.mobile-nav-menu.open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}


/* --- MERGED DELUXE CSS --- */


/* Deluxe Edition Core Styles */

:root {
  --primary-red: #d32f2f;
  --dark-bg: #0d0d0d;
  --card-bg: #1a1a1a;
  --radius: 14px;
}

/* Removed duplicate body style */

body.loaded {
  opacity: 1;
}

}

/* Floating labels */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  background: transparent;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  pointer-events: none;
  transition: .25s ease;
  background: transparent;
  padding: 0 6px;
  opacity: 0.7;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  opacity: 1;
}

/* Toasts */
.toast-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: bold;
  animation: toastSlide .4s ease;
}

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

.toast.success { background: #2e7d32; }
.toast.error { background: #c62828; }
.toast.info { background: #1565c0; }

/* Avatar dropdown */
.avatar-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  object-fit: cover;
}

.user-menu {
  position: absolute;
  top: 55px;
  right: 0;
  background: transparent;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  min-width: 160px;
}

.user-menu.show {
  display: flex;
}

.user-menu a {
  padding: 12px;
  text-decoration: none;
  color: #222;
}

.user-menu a:hover {
  background: #f5f5f5;
}

/* Dark mode */
body.dark {
  background: var(--dark-bg);
  color: #eee;
}

body.dark .user-menu {
  background: #222;
  color: #fff;
}



/* Basic nav/mobile injected */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 32px;
    z-index: 9999;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-center,.nav-left,.nav-right{display:flex;align-items:center;gap:20px;}
.nav-logo{height:50px;}
.nav-link{color:#fff;text-decoration:none;}
.nav-btn.nav-primary {
  background:#dc2626 !important;
  color:#fff !important;
  padding:8px 18px;
  border-radius:20px;
}
.mobile-toggle{display:none;flex-direction:column;gap:5px;position:fixed !important;top:20px !important;right:20px !important;z-index:10001 !important;background:transparent;border:none;cursor:pointer;}
.mobile-toggle span{width:28px;height:3px;background:#fff;transition:all 0.3s ease;}
.mobile-drawer {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #0f172a;
    padding: 80px 24px 40px 24px;
    gap: 22px;
    z-index: 9998;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-drawer.open {
    display: flex;
    transform: translateX(0);
}

@media(max-width:900px){
  .nav-center,.nav-right{display:none;}
  .mobile-toggle{display:flex;}
  
  /* Keep text but make it smaller */
  .nav-text{display:block;}
  .nav-title{font-size:0.7rem;letter-spacing:0.5px;}
  .nav-sub{font-size:0.65rem;}
  .nav-logo{width:35px;height:35px;}
}

@media(max-width:600px){
  /* Even smaller on very small phones */
  .nav-title{font-size:0.6rem;}
  .nav-sub{display:none;} /* Hide subtitle on tiny screens */
  .nav-logo{width:32px;height:32px;}
}

.nav-main {
    background: linear-gradient(to bottom, rgba(15,23,42,1), rgba(15,23,42,0.85));
    backdrop-filter: blur(4px);
}

.nav-title { font-weight:700; letter-spacing:0.5px; text-transform:uppercase; }
.nav-sub { font-weight:400; opacity:0.75; }


/* FIX Program Page layout */
.training-section {
  display: none !important;
}

/* Reset legacy spacing */
body.program-page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


/* Program Page Layout */
.program-wrapper {
    max-width: 1200px;
    margin: 140px auto 80px;
    padding: 0 20px;
}

.program-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.program-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2.2rem;
    font-size: 1rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.program-box {
    background: rgba(15,23,42,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: .3s ease;
}

.program-box:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 8px 20px rgba(220,38,38,0.35);
}

.program-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

html, body {
    height: 100%;
}


/* FIX unified background - Removed duplicate gradient */

/* remove animations that hide content */
section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* remove hero spacing */
.hero-banner + section {
    margin-top: 0 !important;
}

/* program page spacing */
body.program-page {
    margin-top: 140px !important;
    padding-top: 0 !important;
}

/* program wrapper spacing */
.program-wrapper {
    margin-top: 40px !important;
}

/* hide ghost h1 */
body.program-page h1 {
    display: none !important;
}

/* FIX unified background - Removed duplicate gradient */

/* remove animations */
section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Program Page */
body.program-page {
    margin-top: 140px !important;
    padding-top: 0 !important;
}

.program-wrapper {
    max-width: 1200px;
    margin: 40px auto !important;
    padding: 0 20px;
}

.program-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.program-subtitle {
    text-align: center;
    margin-bottom: 2.2rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.program-box {
    background: rgba(15,23,42,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: .3s ease;
}

.program-box:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(220,38,38,0.5);
    box-shadow: 0 8px 20px rgba(220,38,38,0.35);
}

.program-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.pricing-hero, .hero-banner {
  padding-top: 4rem !important;
}


/* === FIX: Disable fade & force visibility on checkout pages === */
body.checkout-page {
    opacity: 1 !important;
}

body.checkout-page * {
    opacity: 1 !important;
    transform: none !important;
}

/* CHECKOUT VISIBILITY FIX */
body.checkout-page{opacity:1!important;} body.checkout-page *{opacity:1!important;transform:none!important;}

/* === CHECKOUT VISIBILITY FIX (ISOLATED) === */
body.checkout-page {
    opacity: 1 !important;
}
body.checkout-page * {
    opacity: 1 !important;
    transform: none !important;
}
