@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Great+Vibes&display=swap');

/* CSS Variables */
:root {
    --luxury-black: #050505;
    --luxury-dark: #0f0f0f;
    --luxury-card-bg: rgba(255, 255, 255, 0.04);
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --orange-primary: #F28C28;
    --orange-light: #FFB366;
    --orange-gradient: linear-gradient(135deg, #F28C28 0%, #D35400 100%);
    --cream-white: #FFF8F0;
    --cream-muted: rgba(255, 248, 240, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-backdrop: blur(25px);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    --glass-inset-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Great Vibes', cursive;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--luxury-black);
    color: var(--cream-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(242, 140, 40, 0.03) 0%, transparent 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--luxury-black);
}
::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
}

p {
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    font-family: var(--font-accent);
    font-size: 2.6rem;
    font-weight: normal;
    color: var(--gold-primary);
}

/* Glassmorphism Panel with Shimmer effect */
.glass-panel {
    background: var(--luxury-card-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset-shadow);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover::before {
    left: 150%;
}

.glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.05), var(--glass-shadow);
    transform: translateY(-5px);
}

/* Layout System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    position: relative;
}

/* Subpage Main Title Block */
.subpage-hero {
    padding: 200px 0 60px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 65%);
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.subpage-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.subpage-hero p {
    font-size: 1.1rem;
    color: var(--cream-muted);
    max-width: 650px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--cream-muted);
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Buttons with pulsing glow effects */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    animation: pulseGlow 3s infinite alternate;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: var(--glass-border);
    color: var(--cream-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

/* Floating Capsule Header with Border Pulse */
header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    border-radius: 50px;
    padding: 12px 35px;
    z-index: 1000;
    box-shadow: var(--glass-shadow), var(--glass-inset-shadow);
    transition: var(--transition-smooth);
    animation: headerPulseBorder 6s infinite alternate;
}

header.scrolled {
    top: 15px;
    background: rgba(8, 8, 8, 0.9);
    border-color: rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.logo span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 450;
    color: var(--cream-muted);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    color: var(--cream-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--cream-white);
}

/* Full-bleed Atmospheric Hero */
.hero {
    min-height: 100vh;
    padding-top: 200px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 1) 95%), url('assets/bootcamp.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
}

.hero-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 7px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -3px;
    animation: slideUpReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content h1 span.nature-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0px;
    margin-top: 10px;
    font-size: 4.2rem;
    color: var(--cream-white);
}

.hero-content p.subheadline {
    font-size: 1.15rem;
    color: var(--cream-muted);
    margin-bottom: 45px;
    max-width: 580px;
    animation: slideUpReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: slideUpReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--cream-white);
    transition: var(--transition-smooth);
}

.hero-whatsapp-link:hover {
    color: #25d366;
    transform: translateX(4px);
}

.hero-whatsapp-link i {
    font-size: 1.3rem;
}

/* Independent Floating Stone-Stack Column (Refined matching reference) */
.stone-stack-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 0;
}

.stone-card {
    width: 280px;
    padding: 24px 30px;
    text-align: center;
    margin-bottom: -12px;
    position: relative;
    z-index: 2;
    transform-origin: center;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stone-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.3) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.stone-card:hover {
    transform: scale(1.04) rotate(0deg) !important;
    z-index: 10 !important;
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), var(--glass-shadow);
}

.stone-card.st-1 { width: 220px; z-index: 6; animation: floatStone1 5s ease-in-out infinite alternate; }
.stone-card.st-2 { width: 250px; z-index: 5; animation: floatStone2 6s ease-in-out infinite alternate; }
.stone-card.st-3 { width: 280px; z-index: 4; animation: floatStone3 5.5s ease-in-out infinite alternate; }
.stone-card.st-4 { width: 310px; z-index: 3; animation: floatStone4 6.5s ease-in-out infinite alternate; }
.stone-card.st-5 { width: 330px; z-index: 2; animation: floatStone5 5.8s ease-in-out infinite alternate; }

.stone-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stone-card p {
    font-size: 0.75rem;
    color: var(--cream-muted);
    margin-top: 4px;
}

/* Keyframes for Independent Stone Floats */
@keyframes floatStone1 {
    0% { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes floatStone2 {
    0% { transform: translateY(0px) rotate(1.5deg); }
    100% { transform: translateY(-10px) rotate(-0.5deg); }
}
@keyframes floatStone3 {
    0% { transform: translateY(0px) rotate(-2deg); }
    100% { transform: translateY(-9px) rotate(0deg); }
}
@keyframes floatStone4 {
    0% { transform: translateY(0px) rotate(0.5deg); }
    100% { transform: translateY(-11px) rotate(-1.5deg); }
}
@keyframes floatStone5 {
    0% { transform: translateY(0px) rotate(-0.5deg); }
    100% { transform: translateY(-7px) rotate(0.5deg); }
}

/* Trust Stats */
/* Redesigned Stats Capsule */
.stats-capsule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 950px;
    margin: 50px auto 90px auto;
    padding: 35px 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    box-shadow: var(--glass-shadow);
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
}

.stat-number-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    display: inline-block;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(212, 175, 55, 0) 100%);
}

/* GQ/Manifesto Split Style: My Mission */
.mission-editorial-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.mission-left {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
}

.mission-left img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.15);
    transition: var(--transition-smooth);
}

.mission-left img:hover {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}

.mission-left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0) 50%);
}

.mission-right {
    display: flex;
    flex-direction: column;
}

.mission-right h2 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.mission-manifesto {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--cream-white);
    border-left: 3px solid var(--gold-primary);
    padding-left: 24px;
    margin: 30px 0;
    line-height: 1.6;
}

.mission-right p {
    color: var(--cream-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Vertical grid cards with avatars & elegant slide-up details */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vertical-item-card {
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: var(--glass-border);
    transition: var(--transition-smooth);
}

.vertical-item-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.08), var(--glass-shadow);
}

.card-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.vertical-item-card:hover .card-bg-img {
    transform: scale(1.08);
}

.card-avatar {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--cream-white);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.vertical-item-card:hover .card-avatar {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--gold-primary);
}

.card-avatar i {
    color: var(--luxury-black);
    font-size: 0.95rem;
}

.card-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.card-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    z-index: 3;
    transition: var(--transition-smooth);
}

.vertical-item-card:hover .card-content-bottom {
    transform: translateY(-5px);
}

.card-content-bottom h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content-bottom p {
    font-size: 0.85rem;
    color: var(--cream-muted);
}

/* Bootcamps */
.bootcamps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bootcamp-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bootcamp-card.popular {
    border-color: rgba(242, 140, 40, 0.35);
    box-shadow: 0 25px 50px rgba(242, 140, 40, 0.05), var(--glass-shadow);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange-gradient);
    color: var(--cream-white);
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bootcamp-header {
    padding: 40px 30px 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bootcamp-duration {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.bootcamp-header h3 {
    font-size: 1.65rem;
    margin-bottom: 12px;
}

.bootcamp-body {
    padding: 30px;
    flex-grow: 1;
}

.bootcamp-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.bootcamp-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--cream-muted);
}

.bootcamp-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Countdown Timer */
.countdown-box {
    margin-top: 25px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.countdown-title {
    font-size: 0.7rem;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-digits {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-part {
    display: flex;
    flex-direction: column;
}

.timer-val {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cream-white);
}

.timer-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--cream-muted);
}

.bootcamp-footer {
    padding: 0 30px 40px 30px;
}

.bootcamp-footer .btn {
    width: 100%;
}

/* Testimonial Slider */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    padding: 55px 45px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
    margin-bottom: -15px;
}

.stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream-white);
    font-family: var(--font-heading);
    margin-bottom: 30px;
    line-height: 1.6;
}

.student-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.student-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.student-details {
    text-align: left;
}

.student-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.student-loc {
    font-size: 0.8rem;
    color: var(--cream-muted);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: var(--glass-border);
    color: var(--cream-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    border-color: var(--gold-primary);
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 10px;
}

/* Video Testimonials */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    height: 440px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: var(--glass-border);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumb {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-white);
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.35);
    transition: var(--transition-smooth);
    z-index: 3;
    animation: breathingBtn 2s infinite alternate;
}

@keyframes breathingBtn {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 15px 30px rgba(242, 140, 40, 0.5); }
}

.video-platform {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(5, 5, 5, 0.7);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
    z-index: 3;
}

.video-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.video-info p {
    font-size: 0.8rem;
    color: var(--cream-muted);
}

/* Google Reviews Widget */
.reviews-widget {
    padding: 40px;
    margin-bottom: 50px;
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.summary-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-logo {
    display: flex;
    flex-direction: column;
}

.google-logo svg {
    width: 90px;
    height: auto;
}

.rating-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cream-white);
}

.rating-stars {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--cream-muted);
}

.reviews-carousel-container {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-item {
    min-width: 350px;
    max-width: 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    color: var(--luxury-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.reviewer-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

.review-rating {
    color: var(--gold-primary);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--cream-muted);
}

/* Write Review */
.write-review-container {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.write-review-container h4 {
    margin-bottom: 15px;
}

.rating-select {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.star-option {
    cursor: pointer;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.star-option.selected, .star-option:hover {
    color: var(--gold-primary);
}

.review-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.review-inputs input, .review-textarea textarea {
    width: 100%;
    background: rgba(5, 5, 5, 0.5);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 12px;
    color: var(--cream-white);
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
}

.review-inputs input:focus, .review-textarea textarea:focus {
    border-color: var(--gold-primary);
}

.review-textarea {
    margin-bottom: 20px;
}

/* Student Gallery */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    color: var(--cream-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-btn.active, .gallery-btn:hover {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    border-color: var(--gold-primary);
}

.gallery-masonry {
    column-count: 4;
    column-gap: 20px;
}

.gallery-item {
    background: var(--luxury-card-bg);
    border: var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
    break-inside: avoid;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.2) 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-item-category {
    font-size: 0.7rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-upload-box {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.upload-dropzone {
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

.upload-dropzone:hover {
    border-color: var(--gold-primary);
}

.upload-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.upload-dropzone input {
    display: none;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-type {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.resource-card.pdf .resource-type { background: rgba(255, 77, 77, 0.1); color: #ff4d4d; border: 1px solid rgba(255, 77, 77, 0.2); }
.resource-card.checklist .resource-type { background: rgba(77, 184, 255, 0.1); color: #4db8ff; border: 1px solid rgba(77, 184, 255, 0.2); }
.resource-card.video-res .resource-type { background: rgba(77, 255, 144, 0.1); color: #4dff90; border: 1px solid rgba(77, 255, 144, 0.2); }

.resource-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.resource-card p {
    color: var(--cream-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.resource-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-form input {
    background: rgba(5, 5, 5, 0.3);
    border: var(--glass-border);
    border-radius: 50px;
    padding: 14px 20px;
    color: var(--cream-white);
    outline: none;
}

.resource-form input:focus {
    border-color: var(--gold-primary);
}

.resource-form .btn {
    width: 100%;
}

/* Quiz */
.quiz-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 50px;
}

.quiz-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.quiz-option {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.01);
    border: var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 15px;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.quiz-option.selected {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary);
}

.option-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-option.selected .option-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.quiz-result {
    display: none;
    text-align: center;
}

.result-score {
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.result-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(242, 140, 40, 0.1);
    color: var(--orange-primary);
    border: 1px solid rgba(242, 140, 40, 0.2);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 25px;
}

.result-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.result-desc {
    color: var(--cream-muted);
    margin-bottom: 30px;
}

.result-recommendation {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.result-recommendation h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

/* Why Most Fail */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comp-column {
    padding: 50px 40px;
}

.comp-column.fail {
    border-color: rgba(255, 77, 77, 0.15);
    background: linear-gradient(180deg, rgba(255, 77, 77, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.comp-column.success {
    border-color: rgba(77, 255, 144, 0.15);
    background: linear-gradient(180deg, rgba(77, 255, 144, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.comp-header h3 {
    font-size: 1.6rem;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.comp-list li span {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comp-column.fail .comp-list li span { color: #ff4d4d; }
.comp-column.success .comp-list li span { color: #4dff90; }

.comp-list p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    margin-top: 4px;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(5, 5, 5, 0.3);
}

.faq-answer-content {
    padding: 0 30px 24px 30px;
    color: var(--cream-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--orange-primary);
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, rgba(0,0,0,0) 60%);
    padding: 120px 0;
}

.final-cta h2 {
    font-size: 3.2rem;
    max-width: 850px;
    margin: 0 auto 25px auto;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--cream-muted);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Footer */
footer {
    background: #040404;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--cream-muted);
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-white);
}

.social-icon:hover {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--cream-muted);
}

.footer-links a:hover {
    color: var(--cream-white);
}

.newsletter-box p {
    font-size: 0.85rem;
    color: var(--cream-muted);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    border-radius: 50px;
    background: rgba(5, 5, 5, 0.5);
    border: var(--glass-border);
    padding: 4px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 16px;
    color: var(--cream-white);
    font-size: 0.85rem;
    flex-grow: 1;
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--cream-muted);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

/* WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 480px;
    width: 90%;
    padding: 50px 40px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--cream-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-form label {
    font-size: 0.85rem;
    color: var(--cream-muted);
}

.login-form input {
    background: rgba(5, 5, 5, 0.5);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 14px;
    color: var(--cream-white);
    outline: none;
}

.login-form input:focus {
    border-color: var(--gold-primary);
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 998;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--luxury-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background-color: var(--orange-primary);
    border-radius: 50%;
    border: 2px solid var(--luxury-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.60rem;
    color: var(--cream-white);
    font-weight: bold;
}

.chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
}

.chat-panel.active {
    display: flex;
}

.chat-header {
    background: var(--luxury-dark);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-primary);
}

.chat-status-info h4 {
    font-size: 0.95rem;
}

.chat-status {
    font-size: 0.75rem;
    color: #4dff90;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4dff90;
}

.close-chat {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--cream-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(5, 5, 5, 0.4);
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
}

.chat-msg.bot {
    background: rgba(255, 255, 255, 0.04);
    color: var(--cream-white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: var(--glass-border);
}

.chat-msg.user {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-options-msg {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: flex-start;
    width: 80%;
}

.chat-choice-btn {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.01);
    border: var(--glass-border);
    border-radius: 12px;
    color: var(--cream-white);
    font-size: 0.8rem;
    cursor: pointer;
    text-align: left;
}

.chat-choice-btn:hover {
    border-color: var(--gold-primary);
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
    background: var(--luxury-dark);
}

.chat-footer input {
    flex-grow: 1;
    background: rgba(5, 5, 5, 0.5);
    border: var(--glass-border);
    border-radius: 50px;
    padding: 10px 16px;
    color: var(--cream-white);
    outline: none;
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange-gradient);
    color: var(--cream-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Toast */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(18, 18, 18, 0.9);
    border: var(--glass-border);
    border-left: 4px solid var(--gold-primary);
    padding: 15px 30px;
    border-radius: 8px;
    color: var(--cream-white);
    font-size: 0.9rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    animation: toast-in 0.4s ease, toast-out 0.4s ease 3s forwards;
}

@keyframes toast-in {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes toast-out {
    0% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Animations Reveal */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Animation Keyframes */
@keyframes slideUpReveal {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInDown {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInRight {
    0% { transform: translateX(30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15); }
    100% { box-shadow: 0 10px 35px rgba(212, 175, 55, 0.35); }
}

@keyframes headerPulseBorder {
    0% { border-color: rgba(255, 255, 255, 0.08); }
    100% { border-color: rgba(212, 175, 55, 0.2); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4.2rem; }
    .hero-content h1 span.nature-subtitle { font-size: 3.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .learn-grid, .bootcamps-grid, .video-grid, .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { column-count: 3; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .mission-editorial-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .subpage-hero h1 { font-size: 2.6rem; }
    .mission-right h2 { font-size: 2.6rem; }
    
    /* Capsule nav hamburger layout */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(20px);
        border: var(--glass-border);
        border-radius: 20px;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-content p.subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .story-wrapper, .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .learn-grid, .bootcamps-grid, .video-grid, .resources-grid {
        grid-template-columns: 1fr;
    }
    .gallery-masonry {
        column-count: 2;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .final-cta h2 { font-size: 2.4rem; }
    .cta-group { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
    .gallery-masonry { column-count: 1; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* Infinite Marquee Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-card {
    width: 220px;
    height: 330px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.marquee-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1), var(--glass-shadow);
}

.marquee-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.marquee-card:hover .marquee-card-img {
    transform: scale(1.08);
}

.marquee-avatar {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--cream-white);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.marquee-card:hover .marquee-avatar {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--gold-primary);
}

.marquee-avatar i {
    color: var(--luxury-black);
    font-size: 0.8rem;
}

.marquee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.marquee-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px 20px;
    z-index: 3;
    transition: var(--transition-smooth);
}

.marquee-card:hover .marquee-content {
    transform: translateY(-4px);
}

.marquee-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream-white);
    line-height: 1.3;
}

/* Redesigned My Mission Split Section */
.mission-split-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    max-width: 950px;
    margin: 80px auto 0 auto;
    text-align: left;
}

.mission-text-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mission-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.mission-text-side h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--cream-white);
    line-height: 1.25;
    margin: 0;
}

.mission-text-side p {
    font-size: 1.05rem;
    color: var(--cream-muted);
    line-height: 1.65;
    margin: 0;
}

.mission-card-side {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.mission-quote-card {
    width: 100%;
    max-width: 380px;
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.mission-quote-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.05), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.mission-quote-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.mission-quote-card:hover .mission-quote-card-img {
    transform: scale(1.03);
}

.mission-quote-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.mission-quote-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    z-index: 3;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.45rem;
    color: var(--cream-white);
    line-height: 1.4;
    margin: 0;
}

.callout-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 2px;
}

.callout-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.callout-link:hover {
    color: var(--cream-white);
}

.callout-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .mission-split-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .mission-text-side {
        text-align: center;
        align-items: center;
    }
    .mission-card-side {
        justify-content: center;
    }
    .mission-quote-card {
        height: 420px;
    }
    .callout-link {
        align-self: center;
    }
}

/* Faded Image Card Model */
.skill-modern-card {
    border-radius: 24px;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.skill-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.06), var(--glass-shadow);
}

.skill-card-banner {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.skill-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.skill-modern-card:hover .skill-card-img {
    transform: scale(1.05);
}

.skill-card-fade-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #0e0e0e 100%);
    z-index: 2;
}

.skill-card-body {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 3;
    margin-top: -30px;
    flex-grow: 1;
}

.skill-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 5px;
    justify-content: flex-start;
}

.skill-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.skill-dots span.active {
    background: var(--gold-primary);
    width: 12px;
    border-radius: 3px;
}

.skill-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.skill-title-row h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.skill-price-badge {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.skill-desc {
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.5;
    margin: 0;
}

.skill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.7rem;
    color: var(--cream-muted);
    font-weight: 500;
}

.skill-btn-action {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    color: var(--cream-white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition-smooth);
}

.skill-modern-card:hover .skill-btn-action {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
    .stats-capsule {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.2) 50%, rgba(212, 175, 55, 0) 100%);
    }
    .stat-item {
        padding: 0;
    }
}

/* Redesigned Blog & Editorial Resources Library styles */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background: var(--luxury-card-bg);
    border: var(--glass-border);
    border-radius: 28px;
    padding: 30px;
    align-items: center;
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.blog-featured-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.05), var(--glass-shadow);
}

.blog-feat-img-wrapper {
    position: relative;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-feat-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.blog-featured-card:hover .blog-feat-img {
    transform: scale(1.02);
}

.blog-feat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--cream-muted);
}

.blog-card-dot {
    color: var(--gold-primary);
}

.blog-card-format i {
    margin-right: 5px;
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000;
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--luxury-card-bg);
    border: var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.05), var(--glass-shadow);
}

.blog-card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream-white);
    line-height: 1.35;
    margin: 0;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.5;
    margin: 0;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-read-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-read-link {
    color: var(--cream-white);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-featured-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .blog-feat-img-wrapper {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Pricing Plans Layout */
.premium-pricing-section {
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
                #07070a;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

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

.pricing-card {
    background: rgba(15, 15, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.1), 0 10px 30px rgba(0,0,0,0.5);
}

.popular-card {
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.07) 0%, transparent 50%), rgba(15, 15, 22, 0.7);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.05);
}

.popular-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2), 0 10px 30px rgba(0,0,0,0.5);
}

.vip-card {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 50%), rgba(15, 15, 22, 0.7);
    border-color: rgba(212, 175, 55, 0.25);
}

.vip-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15), 0 10px 30px rgba(0,0,0,0.5);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--luxury-black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.pricing-card-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

.plan-name {
    font-size: 0.9rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 850;
    color: #fff;
    margin-bottom: 15px;
}

.plan-pitch {
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.5;
    margin: 0;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
    text-align: left;
}

.feature-group h4, .bonus-group h4, .coaching-group h4, .custom-group h4, .support-group h4 {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 750;
}

.feature-group ul, .bonus-group ul, .coaching-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-group li {
    font-size: 0.9rem;
    color: var(--cream-white);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.check-icon {
    color: #3b82f6;
    font-size: 0.95rem;
}

.check-icon-pro {
    color: #8b5cf6;
    font-size: 0.95rem;
}

.check-icon-vip {
    color: var(--gold-primary);
    font-size: 0.95rem;
}

.gift-icon {
    font-size: 1rem;
    margin-right: 5px;
}

.val-tag {
    color: var(--cream-muted);
    font-size: 0.8rem;
}

.total-bonus-value {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--cream-white);
}

.total-bonus-value strong {
    color: var(--gold-primary);
}

.popular-card .total-bonus-value strong {
    color: #8b5cf6;
}

.vip-card .total-bonus-value strong {
    color: var(--gold-primary);
}

.pricing-card-footer {
    margin-top: 35px;
}

.btn-secondary-pricing {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-secondary-pricing:hover {
    background: #fff;
    color: #000;
}

.btn-primary-pricing {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s;
}

.btn-primary-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.vip-btn {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.vip-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.streams-badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stream-badge {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-bottom-box {
    margin-top: 60px;
    padding: 45px;
    border-radius: 24px;
    background: rgba(15, 15, 22, 0.4);
}

.guarantee-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    text-align: left;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.guarantee-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--cream-white);
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.divider-horizontal {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 35px;
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.urgency-info h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
}

.current-offer-tag {
    color: #8b5cf6;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.seats-progress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seats-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.seats-filled {
    color: var(--cream-white);
}

.seats-total {
    color: #ef4444;
}

.seats-progress-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.seats-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: width 1s ease-out;
}

.timer-title {
    font-size: 0.85rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timer-digits-pricing {
    display: flex;
    gap: 12px;
}

.timer-part-pricing {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.timer-val-pricing {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.timer-lbl-pricing {
    font-size: 0.65rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .urgency-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Stripe Checkout Simulator styles */
.stripe-checkout-box {
    max-width: 820px;
    width: 95%;
    background: #0f0f15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    padding: 0;
    overflow: hidden;
    animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stripe-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100;
    transition: color 0.2s;
}

.stripe-close:hover {
    color: #fff;
}

.stripe-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 520px;
}

.stripe-summary-col {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stripe-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.stripe-logo-s {
    background: #635bff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.stripe-merchant {
    font-size: 0.85rem;
    color: var(--cream-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.stripe-summary-col h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.stripe-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stripe-price {
    font-size: 2.5rem;
    font-weight: 850;
    color: #fff;
}

.stripe-currency {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.stripe-schedule-info {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.6;
}

.stripe-form-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: #09090d;
}

.stripe-form-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.stripe-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.stripe-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.stripe-form-group input, .stripe-form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s;
}

.stripe-form-group input:focus, .stripe-form-group select:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.15);
}

.card-element-wrapper {
    background: rgba(255,255,255,0.01);
    border-radius: 8px;
}

.card-inputs-row {
    display: flex;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.card-inputs-row input {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 12px 14px;
}

.card-inputs-row input:focus {
    box-shadow: none;
}

.card-inputs-row div input {
    padding-right: 40px;
}

.card-type-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    pointer-events: none;
}

.stripe-submit-btn {
    background: #635bff;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.35);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.stripe-submit-btn:hover {
    background: #7a73ff;
    box-shadow: 0 6px 18px rgba(99, 91, 255, 0.5);
}

.stripe-submit-btn.processing {
    background: #4740b7;
    pointer-events: none;
    color: rgba(255,255,255,0.6);
}

.stripe-submit-btn.processing::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: stripeSpin 0.8s linear infinite;
    right: 20px;
    top: calc(50% - 10px);
}

.stripe-form-footer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.4;
    margin-top: 20px;
}

@keyframes stripeSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .stripe-layout {
        grid-template-columns: 1fr;
    }
    .stripe-summary-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px;
    }
    .stripe-form-col {
        padding: 30px;
    }
}

/* Partners Startup Offers Section */
.partners-offers-section {
    background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.03) 0%, transparent 50%), #07070a;
    padding: 100px 0 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.06), 0 10px 30px rgba(0,0,0,0.4);
}

.partner-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.partner-logo-svg {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 750;
    color: #fff;
}

.partner-desc {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 42px;
}

.partner-offer-highlight {
    font-size: 1.1rem;
    font-weight: 750;
    color: #22c55e; /* vibrant green from screenshot */
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: auto;
}

.partner-save-tag {
    font-size: 0.85rem;
    color: var(--cream-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Bootcamp Landing Page Styles */
.bootcamp-hero-landing {
    padding: 180px 0 100px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 30%, rgba(99, 91, 255, 0.07) 0%, transparent 60%), #07070a;
}

.different-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.btn-breathing {
    animation: buttonBreathe 2.5s infinite ease-in-out;
}

@keyframes buttonBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.7);
    }
}

@media (max-width: 992px) {
    .different-split {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .curriculum-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    .curriculum-card {
        grid-column: auto !important; /* override the span 1.5 on mobile */
    }
}

/* Partners Startup Offers Left-To-Right Infinite Marquee */
.partners-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partners-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #07070a 0%, transparent 100%);
}

.partners-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #07070a 0%, transparent 100%);
}

.partners-marquee-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollPartnersLtoR 60s linear infinite;
}

.partners-marquee-wrapper:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes scrollPartnersLtoR {
    0% {
        transform: translateX(calc(-50% - 12.5px)); /* adjust for gap alignment */
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .partners-marquee-wrapper::before,
    .partners-marquee-wrapper::after {
        width: 80px;
    }
}

/* Hero Gallery Double Marquee (Right to Left) */
.hero-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.hero-marquee-container::before,
.hero-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, #07070a 0%, transparent 100%);
}

.hero-marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, #07070a 0%, transparent 100%);
}

.hero-marquee-row {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollHeroMarqueeRtoL 35s linear infinite;
}

.hero-marquee-container:hover .hero-marquee-row {
    animation-play-state: paused;
}

.hero-img-card {
    width: 320px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
    pointer-events: auto;
    cursor: pointer;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.3s ease;
}

.hero-img-card:hover img {
    transform: scale(1.05);
}

@keyframes scrollHeroMarqueeRtoL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px)); /* offset gap correction */
    }
}

@media (max-width: 768px) {
    .hero-img-card {
        width: 240px;
        height: 150px;
    }
    .hero-marquee-container::before,
    .hero-marquee-container::after {
        width: 60px;
    }
}

@media (max-width: 992px) {
    .calendar-grid-timeline {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .calendar-grid-timeline {
        grid-template-columns: 1fr !important;
    }
}





