/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --teal: #4bb6ae;       
    --teal-dark: #3aa099;  
    --teal-light: #b0f2ed; 
    
    --purple: #473e8a;      
    --purple-dark: #322b6b; 
    --purple-light: #8e85d6;
    --purple-bg-light: #e6e4fa;
    
    --white: #ffffff;
    --off-white: #f9fafb;
    --grey-text: #555555;
    --gold: #C9A24D;
    
    --grad-main: linear-gradient(135deg, #322b6b 0%, #473e8a 50%, #4bb6ae 100%);
    --grad-text: linear-gradient(90deg, #473e8a 0%, #4bb6ae 100%);
    
    --font-body: 'Montserrat', sans-serif;
    --font-head: 'Outfit', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(50, 43, 107, 0.05);
    --shadow-md: 0 10px 30px rgba(50, 43, 107, 0.08);
    --shadow-lg: 0 20px 40px rgba(50, 43, 107, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Coupe tout dépassement horizontal */
    font-family: var(--font-body);
    background-color: var(--white);
    color: #2d2d2d;
    line-height: 1.5;
    position: relative; /* Aide à contenir les éléments absolus */
}

/* Typography & Utils */
.ticket-title { font-size: 2.2rem; color: var(--white); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
p { font-weight: 500; color: #555; }
.text-purple { color: var(--purple); }
.text-purple-dark { color: var(--purple-dark); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white) !important; }
.text-grey { color: var(--grey-text); }
.text-gradient { 
    background: var(--grad-text); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.text-grand { font-size: 1.1em; font-weight: 700; color: var(--purple-dark); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 5; }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; } .mt-30 { margin-top: 30px; } .mb-50 { margin-bottom: 50px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.opacity-70 { opacity: 0.7; } .opacity-80 { opacity: 0.8; }
.full-width { width: 100%; justify-content: center; }


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   2. BACKGROUND & ANIMATIONS
   ========================================= */
.super-bg { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    z-index: 0; pointer-events: none; overflow: hidden; 
    background: #ffffff;
}
#tech-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.bg-gradient-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(75, 182, 174, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(71, 62, 138, 0.08), transparent 50%);
}

.orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.4; animation: floatOrb 10s infinite ease-in-out; }
.orb-1 { width: 300px; height: 300px; background: rgba(75, 182, 174, 0.2); top: -50px; right: -50px; }
.orb-2 { width: 400px; height: 400px; background: rgba(71, 62, 138, 0.15); bottom: -100px; left: -100px; animation-delay: -5s; }
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, 40px); } }

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 12px 0; background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-group { display: flex; align-items: center; gap: 15px; }
.nav-logo { height: 35px; width: auto; transition: opacity 0.3s; }
#ij-logo { height: 42px; }
.nav-divider { width: 1px; height: 35px; background: rgba(71, 62, 138, 0.2); }

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--purple-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Apply Now Button in Nav */
.btn-apply-nav {
    padding: 8px 18px !important;
    font-size: 13px !important;
    white-space: nowrap;
}

.lang-btn {
    background: var(--purple);
    color: var(--white);
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lang-btn:hover {
    background: var(--teal);
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--purple-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid rgba(71, 62, 138, 0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
    padding: 20px 0;
}

.mobile-menu a {
    padding: 12px 20px;
    color: var(--purple-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu a:hover {
    background: rgba(71, 62, 138, 0.05);
    border-left-color: var(--teal);
    color: var(--teal);
}

.mobile-apply-btn {
    margin: 10px 20px 0 20px;
    padding: 12px 20px !important;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white !important;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    border-left: none !important;
}

.mobile-apply-btn:hover {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
    border-left: none !important;
}
/* =========================================
   4. BUTTONS
   ========================================= */
.btn-serious {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 30px; font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 0.5px;
    color: white; background: var(--purple); border: none; border-radius: 50px;
    cursor: pointer; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-md); text-decoration: none; z-index: 1;
}
.btn-serious::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--teal); z-index: -1; transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-serious:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-serious:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-serious:disabled { background: #ccc; cursor: not-allowed; box-shadow: none; }

.btn-glow { box-shadow: 0 0 15px rgba(71, 62, 138, 0.4); }
.btn-glow:hover { box-shadow: 0 0 25px rgba(75, 182, 174, 0.6); }

.btn-outline { background: transparent; border: 2px solid var(--purple); color: var(--purple); box-shadow: none; }
.btn-outline:hover { color: white; border-color: transparent; }

.btn-white { background: white; color: var(--purple); }
.btn-white::before { background: var(--off-white); }
.btn-white:hover { color: var(--teal); }
.btn-lg { padding: 15px 35px; font-size: 15px; }

/* =========================================
   5. HERO SECTION WITH SPLIT LAYOUT & VIDEO PORTAL
   ========================================= */
.hero-section {
    position: relative; 
    padding-top: 120px; 
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.hero-line-1 { font-size: 2.5rem; font-weight: 800; }
.hero-line-2 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; }
.hero-line-3 { 
    font-size: 1.6rem; 
    font-weight: 500; 
    margin-top: 15px; 
    color: #444; 
    letter-spacing: -0.5px; 
}
.hero-line-3 .desktop-sep { display: none; }
.hero-line-3 .mobile-block { 
    display: block; 
    text-align: center;
    margin-top: 5px;
}
.hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

/* --- HERO ADMISSION BANNER --- */
.hero-admission-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(75, 182, 174, 0.18), rgba(75, 182, 174, 0.08));
    border: 1.5px solid rgba(75, 182, 174, 0.7);
    border-radius: 40px;
    padding: 11px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #2ec4b6;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow:
        0 0 14px rgba(75, 182, 174, 0.35),
        0 0 32px rgba(75, 182, 174, 0.15),
        inset 0 0 12px rgba(75, 182, 174, 0.08);
    animation: admission-glow 2.5s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

@keyframes admission-glow {
    0%, 100% {
        box-shadow:
            0 0 14px rgba(75, 182, 174, 0.35),
            0 0 32px rgba(75, 182, 174, 0.15),
            inset 0 0 12px rgba(75, 182, 174, 0.08);
    }
    50% {
        box-shadow:
            0 0 22px rgba(75, 182, 174, 0.65),
            0 0 55px rgba(75, 182, 174, 0.30),
            inset 0 0 18px rgba(75, 182, 174, 0.15);
    }
}

.admission-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #4BB6AE;
    box-shadow: 0 0 8px rgba(75, 182, 174, 0.9), 0 0 18px rgba(75, 182, 174, 0.5);
    animation: pulse-dot 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(75, 182, 174, 0.9), 0 0 18px rgba(75, 182, 174, 0.5); }
    50% { opacity: 0.6; transform: scale(0.65); box-shadow: 0 0 4px rgba(75, 182, 174, 0.5); }
}

@media (max-width: 768px) {
    .hero-admission-banner {
        font-size: 0.85rem;
        padding: 9px 18px;
        text-align: center;
        justify-content: center;
        letter-spacing: 0.02em;
    }
}

/* VIDEO PORTAL DESIGN */
.hero-video-portal {
    position: relative;
    z-index: 10;
}

.video-portal-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

/* Glowing Ring Effect */
.portal-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(75, 182, 174, 0.3), rgba(71, 62, 138, 0.2), transparent 70%);
    border-radius: 30px;
    filter: blur(30px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Floating Particles */
.portal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.portal-particles::before,
.portal-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 8s ease-in-out infinite;
}

.portal-particles::before {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.portal-particles::after {
    bottom: 15%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
    50% { transform: translateY(-40px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(5px); opacity: 0.7; }
}

/* Video Container */
.portal-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1a2e, #2d2d44);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(71, 62, 138, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.portal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Controls */
.portal-video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portal-video-container:hover .portal-video-controls {
    opacity: 1;
}

.portal-control-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portal-control-btn:hover {
    background: rgba(75, 182, 174, 0.9);
    border-color: rgba(75, 182, 174, 1);
    transform: scale(1.1);
}

.portal-control-btn svg {
    width: 20px;
    height: 20px;
}

/* Corner Accents */
.portal-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--teal);
    z-index: 4;
}

.portal-tl {
    top: -8px;
    left: -8px;
    border-bottom: none;
    border-right: none;
    border-radius: 24px 0 0 0;
}

.portal-tr {
    top: -8px;
    right: -8px;
    border-bottom: none;
    border-left: none;
    border-radius: 0 24px 0 0;
}

.portal-bl {
    bottom: -8px;
    left: -8px;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 24px;
}

.portal-br {
    bottom: -8px;
    right: -8px;
    border-top: none;
    border-left: none;
    border-radius: 0 0 24px 0;
}

/* Fullscreen Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.fullscreen-modal.active {
    display: flex;
}

.close-fullscreen {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-fullscreen:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.close-fullscreen svg {
    width: 24px;
    height: 24px;
}

.fullscreen-video-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 90vh;
    max-height: 900px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.fullscreen-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fullscreen-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10000;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background: rgba(75, 182, 174, 0.9);
    border-color: rgba(75, 182, 174, 1);
    transform: scale(1.1);
}

.video-control-btn svg {
    width: 22px;
    height: 22px;
}

/* =========================================
   6. TRUST BAR
   ========================================= */
.trust-bar {
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    background: #fafafa; padding: 25px 0; margin-bottom: 0; margin-top: 0;
}
.trust-bar .container { 
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; 
}
.trust-label { 
    font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--purple-dark); font-weight: 700; margin-right: 0; 
}
.trust-logos { display: flex; align-items: center; gap: 40px; }
.trust-logo { height: 70px; width: auto; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.trust-logo:hover { transform: scale(1.15); }
.trust-x { color: #ccc; font-size: 20px; }

/* =========================================
   7. CONCEPT SECTION
   ========================================= */
.section-std { padding: 60px 0; position: relative; } 

.badge-wrapper { margin-bottom: 10px; }
.badge-tag.animated-badge {
    background-color: var(--purple-bg-light); color: var(--purple); font-size: 0.75rem; 
    padding: 5px 15px; border-radius: 30px; font-weight: 700; display: inline-block; letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(71, 62, 138, 0.1); animation: none; transition: transform 0.3s ease;
}
.badge-tag.animated-badge:hover { transform: scale(1.15); }

.concept-layout { display: flex; gap: 40px; align-items: center; }

.concept-text { flex: 0.7; } 
.section-heading { font-size: 2rem; margin-bottom: 15px; }
.txt-compact { font-size: 0.95rem; line-height: 1.5; } 

.concept-visual-dual { flex: 0.8; position: relative; height: 450px; } 

.dual-img { 
    position: absolute; border-radius: 16px; overflow: hidden; 
    box-shadow: var(--shadow-lg); border: 5px solid white; 
    transition: all 0.4s ease;
}
.dual-img img { width: 100%; height: 100%; object-fit: cover; }

.img-1 { width: 380px; height: 260px; top: 60px; left: -20px; z-index: 2; }
.img-2 { width: 360px; height: 380px; top: 0; right: -20px; z-index: 1; }

.concept-visual-dual:hover .dual-img { z-index: 1; opacity: 0.8; }
.concept-visual-dual .dual-img:hover { z-index: 10 !important; transform: scale(1.05); opacity: 1; }

.quote-card-magic.compact-quote { margin: 15px 0; padding: 12px 15px; gap: 15px; }
.quote-card-magic {
    position: relative; background: #fff; border-radius: 12px;
    box-shadow: var(--shadow-sm); overflow: hidden; display: flex; align-items: flex-start;
}
.magic-border {
    position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
}
.quote-icon-lg { min-width: 24px; height: 24px; color: var(--teal); }
.quote-main { display: block; font-size: 0.95rem; font-weight: 700; font-family: var(--font-head); font-style: italic; color: #333; }
.quote-source { font-size: 0.7rem; color: #888; text-transform: uppercase; margin-top: 3px; display: block; }

/* =========================================
   8. PILLARS
   ========================================= */
.bg-light-mesh { background: radial-gradient(#473e8a05 1px, transparent 1px) 0 0 / 20px 20px; }
.aims-grid-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.aim-card-clean {
    background: white; padding: 30px 25px; border-radius: 16px; border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-sm); transition: 0.3s; height: 100%; display: flex; flex-direction: column;
}
.aim-card-clean:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.acc-icon-box {
    width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px; color: var(--purple-dark); font-size: 20px;
}
.bg-teal-light { background: rgba(75, 182, 174, 0.15); color: var(--teal); }
.bg-purple-light { background: rgba(71, 62, 138, 0.15); color: var(--purple); }
.acc-title { font-size: 1.15rem; margin-bottom: 10px; color: #333; }
.acc-desc { font-size: 0.9rem; }

/* =========================================
   9. OUTCOMES (COMPACT ROW)
   ========================================= */
.outcomes-section-dark {
    background-color: #f4f5f7; position: relative; overflow: hidden; padding: 50px 0;
}
.outcomes-row {
    display: flex; justify-content: space-between; gap: 15px; margin-top: 30px; align-items: stretch;
}
.outcome-card-compact {
    flex: 1; background: white; border-radius: 15px; padding: 20px 15px;
    text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(0,0,0,0.02); min-height: 220px;
}
.outcome-card-compact:hover {
    transform: translateY(-5px); box-shadow: 0 10px 20px rgba(71, 62, 138, 0.1); border-color: rgba(71, 62, 138, 0.1);
}
.outcome-card-compact.special { background: #1a1a2e; color: white; }
.outcome-card-compact.special h4, .outcome-card-compact.special p { color: white; }
.outcome-card-compact.special .outcome-icon { background: rgba(255,255,255,0.1); color: var(--gold); }
.outcome-icon {
    width: 45px; height: 45px; background: rgba(71, 62, 138, 0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--purple); margin-bottom: 15px; font-size: 20px;
}
.outcome-card-compact h4 { font-size: 1rem; margin-bottom: 8px; color: var(--purple-dark); line-height: 1.2; }
.outcome-card-compact p { font-size: 0.8rem; line-height: 1.4; color: #666; }

/* =========================================
   10. PROGRAM DOWNLOAD
   ========================================= */
.section-program-premium { margin: 60px 0; }
.program-ticket {
    background: var(--grad-main); border-radius: 24px;
    display: flex; overflow: hidden; box-shadow: var(--shadow-lg);
    position: relative; min-height: 300px;
}
.ticket-left { flex: 1; padding: 50px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.ticket-decor-line { position: absolute; right: 0; top: 20px; bottom: 20px; width: 2px; border-right: 2px dashed rgba(255,255,255,0.3); }
.ticket-right { flex: 1; padding: 50px; background: rgba(0,0,0,0.15); display: flex; flex-direction: column; justify-content: center; }
.ticket-title { font-size: 2.2rem; color: var(--white); }
.ticket-subtitle { color: var(--white); opacity: 0.8; margin-top: 10px; }
.input-modern-group { position: relative; margin-bottom: 20px; width: 100%; }
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--purple); z-index: 2; }
.input-modern-group input {
    width: 100%; padding: 12px 12px 12px 45px; border-radius: 12px; border: none; font-size: 15px;
    background: white; outline: none; transition: 0.3s;
}
.checkbox-modern-wrapper { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.custom-checkbox { position: relative; width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
.custom-checkbox input { opacity: 0; width: 0; height: 0; }
.checkmark {
    position: absolute; top: 0; left: 0; height: 18px; width: 18px;
    background-color: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    color: transparent; transition: 0.2s;
}
.checkmark svg {
    width: 12px;
    height: 12px;
}
.custom-checkbox input:checked ~ .checkmark { background-color: var(--teal); border-color: var(--teal); color: white; }
.label-text { margin-top: 1px; font-size: 11px; color: var(--white); }

/* =========================================
   11. AUDIENCE SECTION (Reversed)
   ========================================= */
.audience-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.img-frame-tech { position: relative; border-radius: 20px; }
.img-frame-tech img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); display: block; position: relative; z-index: 2; }
.tech-corner { position: absolute; width: 30px; height: 30px; border: 3px solid var(--purple); z-index: 3; }
.corner-tl { top: -10px; left: -10px; border-bottom: none; border-right: none; }
.corner-br { bottom: -10px; right: -10px; border-top: none; border-left: none; }

/* =========================================
   12. FINAL CTA STYLES
   ========================================= */
.cta-section { padding-bottom: 80px; background: linear-gradient(to bottom, #fff 0%, #f4f7fe 100%); }
.final-cta-title { font-size: 2.5rem; }
.final-cta-text { max-width: 800px; margin-top: 20px; }
.final-cta-btn-wrapper { margin-top: 30px; margin-bottom: 30px; }
.scale-up-hover:hover { transform: scale(1.05) translateY(-2px); }

/* =========================================
   13. FOOTER
   ========================================= */
footer { background: #1a1a2e; color: #fff; padding: 60px 0 20px; position: relative; z-index: 10; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; } 
.footer-logos-col { display: flex; align-items: center; gap: 20px; }
.footer-logo { height: 35px; width: auto; filter: brightness(0) invert(1); }
.footer-x { color: #fff; }
.footer-col h4 { color: white; margin-bottom: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--teal);
}
.socials { display: flex; gap: 15px; margin-top: 15px; }
.socials a {
    display: inline-flex; width: 35px; height: 35px; background: rgba(255,255,255,0.1);
    border-radius: 50%; justify-content: center; align-items: center; color: white; transition: 0.3s;
}
.socials a:hover { background: var(--teal); transform: scale(1.1); }
.socials a:hover { background: var(--teal); transform: scale(1.1); }
.socials a svg {
    width: 18px;
    height: 18px;
}
.footer-bottom { margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; font-size: 12px; color: #ccc; text-align: center; }

/* =========================================
   RESPONSIVE (MOBILE)
   ========================================= */
@media (min-width: 993px) {
    .mobile-block { display: block; text-align: center; }
    .desktop-sep { display: none; }
}

@media (max-width: 992px) {

    .hero-section { 
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: 100vh;
    }
    
    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content-left {
        text-align: center;
    }
    
    .hero-line-1 { font-size: 2rem; margin-top: 50px; }
    .hero-line-2 { font-size: 2.5rem; }
    
    
    /* Navigation responsive */
 /* Navbar Mobile */
    .logo-group {
        gap: 10px;
    }
    
    .nav-logo {
        height: 28px;
    }
    
    #ij-logo {
        height: 32px;
    }
    
    .nav-divider {
        height: 28px;
    }
    
    .nav-links {
        display: none;
    }

    .btn-apply-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
    
    .lang-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* Prizes responsive */
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .prize-card {
        padding: 18px 12px;
    }
    
    .prize-card-title {
        font-size: 0.9rem;
    }
    
    .prize-card-desc {
        font-size: 0.75rem;
    }
    
    /* Testimonials responsive */
    .testimonial-card {
        flex: 0 0 320px;
        min-height: 140px;
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    .nav-content { flex-direction: column; gap: 20px; }
    .nav-divider { display: none; }
    .nav-logo { height: 40px; }
    #ij-logo { height: 50px; }
    
    .hero-line-3 { 
        white-space: normal; 
        line-height: 1;
    }
    .hero-line-3 strong {
        display: block;
        white-space: nowrap;
    }
    .mobile-block { display: block; }
    .desktop-sep { display: none; }
    
    .hero-actions { 
        justify-content: center;
    }
    .hero-actions .btn-serious { padding: 8px 16px; font-size: 11.5px; }

    .video-portal-frame {
        max-width: 100%;
    }
    
    .portal-video-container {
        aspect-ratio: 9/16;
        max-height: 85vh;
    }
    
    .portal-video-controls {
        opacity: 1;
        bottom: 15px;
        gap: 10px;
    }
    
    .portal-control-btn {
        width: 40px;
        height: 40px;
    }
    
    .portal-control-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .portal-corner {
        width: 30px;
        height: 30px;
    }
    
    .scroll-indicator-hero {
        bottom: 20px;
        font-size: 12px;
    }

    .trust-logos { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .trust-logo { height: 45px; max-width: 150px; object-fit: contain; }
    .footer-lse-logo { height: 31px; }

    .fullscreen-video-container {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .close-fullscreen {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .fullscreen-controls {
        bottom: 40px;
        gap: 15px;
    }

    .concept-layout { flex-direction: column; text-align: center; gap: 40px; margin-bottom: 60px; }
    
    .aims-sec { margin-top: 0; padding-top: 0; }
    
    .concept-visual-dual { height: 300px; width: 100%; display: flex; justify-content: center; }
    .img-1 { 
        width: 80%; height: 260px; 
        position: relative;
        top: auto; left: auto; right: auto; 
        transform: none !important;
        margin: 0 auto;
    }
    .img-2 { display: none; }

    .audience-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
    
    .aims-grid-clean { grid-template-columns: 1fr; gap: 20px; }
    
    .outcomes-row { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 15px; 
    }
    .outcome-card-compact:nth-child(5) {
        grid-column: 1 / -1;
        width: 60%;
        margin: 0 auto;
    }
    
    .program-ticket { flex-direction: column; text-align: center; }
    .ticket-decor-line { display: none; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-logos-col { justify-content: center; }
    .footer-links { align-items: center; }
    .socials { justify-content: center; }
}


/* =========================================
   14. PRIZES SECTION
   ========================================= */
.prizes-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f4f7fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 182, 174, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.prizes-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(71, 62, 138, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.prize-card {
    background: white;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(71, 62, 138, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(71, 62, 138, 0.05);
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.prize-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(71, 62, 138, 0.15);
    border-color: var(--purple);
}

.prize-card:hover::before {
    transform: scaleX(1);
}

.prize-icon-wrapper {
    margin-bottom: 15px;
}

.prize-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(75, 182, 174, 0.1), rgba(71, 62, 138, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: all 0.4s ease;
}

.prize-card:hover .prize-icon {
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.prize-icon svg,
.prize-icon i {
    width: 26px;
    height: 26px;
}

.prize-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.prize-card-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
}

.prizes-note {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* =========================================
   15. TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    background: #f4f5f7;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 15px 0;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 380px;
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(71, 62, 138, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 62, 138, 0.05);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(71, 62, 138, 0.12);
    border-color: var(--teal);
}

.testimonial-quote-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(75, 182, 174, 0.15), rgba(71, 62, 138, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin-bottom: 15px;
}

.testimonial-quote-icon svg,
.testimonial-quote-icon i {
    width: 18px;
    height: 18px;
}

.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid #f0f0f0;
    padding-top: 12px;
}

.author-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(71, 62, 138, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--purple);
    width: 30px;
    border-radius: 5px;
}

.testimonial-dot:hover {
    background: var(--teal);
    transform: scale(1.2);
}
/* Responsive styles for Prizes and Testimonials */
@media (max-width: 992px) {
    .prizes-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .prize-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        min-height: 220px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        padding: 25px 20px;
    }
}
/* Small devices responsive */
@media (max-width: 600px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        padding: 18px 15px;
    }
}

/* Large desktop - keep prizes in one row */
@media (min-width: 1400px) {
    .prizes-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* =========================================
   NEW STYLES FOR UPDATED SECTIONS
   ========================================= */

/* Golden Color (replacing orange with gold) */
:root {
    --accent-orange: #FFD700;
    --accent-orange-light: #FFED4E;
    --accent-orange-dark: #C9A24D;
}


/* Updated Hero Section Styles with Glassmorphism */
.hero-reward-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.reward-glass-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 120, 73, 0.3);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 32px rgba(255, 120, 73, 0.15);
    animation: slideInFromRight 1s ease-out 0.5s both;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reward-glass-box:hover {
    background: rgba(255, 120, 73, 0.1);
    border-color: var(--accent-orange);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 120, 73, 0.25);
}

.glass-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.reward-glass-box .reward-icon {
    color: var(--accent-orange);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.reward-text {
    color: var(--purple-dark);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Hero Meta Section - Bigger Text */
.hero-meta-section {
    margin-top: 20px;
}

.hero-meta-line {
    font-size: 1.2rem;
    color: var(--grey-text);
    margin-bottom: 8px;
    text-align: center;
}

.meta-org {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--purple-dark);
}

.meta-location-line {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--purple);
}

.hero-dates-line {
    margin-top: 10px;
    font-size: 1.05rem;
    color: var(--grey-text);
    font-weight: 600;
    text-align: center;
}

.dates-full {
    white-space: nowrap;
}

.hero-sub-link {
    margin-top: 15px;
    text-align: center;
}

.see-prizes-link {
    color: var(--purple);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.see-prizes-link:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* Bigger General Text Sizes */
.hero-line-1 {
    font-size: 3.5rem;
}

.hero-line-2 {
    font-size: 2.2rem;
}

.hero-line-3 {
    font-size: 1.3rem;
}

/* Concept Bottom Additions (centered under the section) */
.concept-bottom-additions {
    margin-top: 60px;
    text-align: center;
}

.concept-highlight-phrase {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    color: var(--purple-dark);
    line-height: 1.6;
    padding: 25px 30px;
    border-top: 2px solid rgba(71, 62, 138, 0.2);
    border-bottom: 2px solid rgba(71, 62, 138, 0.2);
}

/* Concept Outcomes Grid - One Line, Smaller Cards */
.concept-outcomes-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.concept-outcome-item {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 20px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(71, 62, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.concept-outcome-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(71, 62, 138, 0.12);
    border-color: var(--purple-light);
}

.outcome-icon-simple {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--teal-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-dark);
}

.outcome-icon-simple svg {
    width: 24px;
    height: 24px;
}

.outcome-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 0;
    line-height: 1.3;
}

/* Highlight the 4th outcome (Rewards) */
.concept-outcome-highlight {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    border-color: var(--accent-orange);
}

.concept-outcome-highlight:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 120, 73, 0.2);
}

.concept-outcome-highlight .outcome-icon-simple {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 100%);
    color: white;
}

.concept-outcome-highlight .outcome-label {
    color: var(--accent-orange-dark);
}

.outcome-prize-link {
    text-decoration: none;
    display: block;
}

/* Book a Call Section */
.book-call-section {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid rgba(71, 62, 138, 0.15);
}

.book-call-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.btn-md {
    padding: 12px 28px;
    font-size: 1rem;
}

/* Prizes Section (Advanced Design) - Cards in One Line */
.prizes-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 50%, #f8f9ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 120, 73, 0.06) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.prizes-main-title {
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 50%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.prizes-intro {
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Advanced Prizes Grid - One Line Only */
.prizes-advanced-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.prize-card-advanced {
    flex: 1;
    max-width: 280px;
    perspective: 1000px;
}

.prize-card-inner {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.prize-card-advanced:hover .prize-card-inner {
    transform: translateY(-12px) rotateX(5deg);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 50px rgba(255, 120, 73, 0.25);
}

.prize-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 120, 73, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.prize-card-advanced:hover .prize-glow-effect {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.prize-icon-wrapper-advanced {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, var(--accent-orange) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.prize-card-advanced:hover .prize-icon-wrapper-advanced {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 120, 73, 0.35);
}

.prize-icon-wrapper-advanced svg {
    width: 38px;
    height: 38px;
}

.prize-card-title-advanced {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.prize-card-desc-advanced {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.prizes-note {
    margin-top: 40px;
    font-size: 0.95rem;
    font-style: italic;
    color: #888;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-line-1 {
        font-size: 2.5rem;
    }
    
    .hero-line-2 {
        font-size: 1.6rem;
    }
    
    .hero-line-3 {
        font-size: 1.1rem;
    }
    
    .hero-reward-container {
        justify-content: center;
    }
    
    .reward-glass-box {
        padding: 14px 20px;
        gap: 10px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .reward-glass-box .reward-icon {
        width: 20px;
        height: 20px;
    }
    
    .reward-text {
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
    }
    
    .hero-meta-section {
        text-align: center;
    }
    
    .hero-meta-line,
    .meta-location-line {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .meta-org {
        font-size: 1.15rem;
    }
    
    .hero-dates-line {
        text-align: center;
        font-size: 1rem;
    }
    
    .dates-full {
        white-space: normal;
        display: block;
    }
    
    /* Concept Outcomes - 2 per row on mobile */
    .concept-outcomes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .concept-outcome-item {
        padding: 18px 10px;
    }
    
    .outcome-icon-simple {
        width: 45px;
        height: 45px;
    }
    
    .outcome-label {
        font-size: 0.85rem;
    }
    
    /* Prizes Grid - 2 per row on mobile, centered text */
    .prizes-advanced-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .prize-card-advanced {
        max-width: 100%;
    }
    
    .prize-card-inner {
        text-align: center;
    }
    
    .prize-card-title-advanced {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .prize-card-desc-advanced {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .prizes-main-title {
        font-size: 2rem;
    }
    
}

@media (max-width: 480px) {
    .hero-line-1 {
        font-size: 2rem;
    }
    
    .hero-line-2 {
        font-size: 1.4rem;
    }
    
    .hero-line-3 {
        font-size: 1rem;
    }
    
    .concept-highlight-phrase {
        font-size: 1.15rem;
        padding: 20px 20px;
    }
    
    .meta-org {
        font-size: 1.05rem;
    }
    
    .hero-dates-line {
        font-size: 0.95rem;
    }
}
/* =========================================
   HERO V0 - NOUVEAUX STYLES SPECIFIQUES
   ========================================= */
.hero-reward-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.15) 0%, rgba(201, 162, 77, 0.25) 100%);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-reward-line::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-reward-line:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 162, 77, 0.4);
    border-color: #FFD966;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.25) 0%, rgba(255, 217, 102, 0.35) 100%);
}

.trophy-icon {
    font-size: 1.3em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-top: 10px;
    justify-content: center;
}

.meta-item {
    white-space: nowrap;
}

.hero-date-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--grey-text);
    margin-top: 8px;
    justify-content: center;
}

.desktop-sep {
    color: var(--grey-text);
    opacity: 0.5;
}

.hero-see-prizes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-see-prizes:hover {
    gap: 10px;
    color: #FFD966;
}

/* =========================================
   PRIZES SECTION V0 - NOUVEAU DESIGN SANS CARDS
   ========================================= */
.prizes-section-new {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(201, 162, 77, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.prizes-section-new::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 77, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlowPrizes 4s ease-in-out infinite;
}

@keyframes pulseGlowPrizes {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.prizes-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.prizes-main-title-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-head);
    margin-bottom: 25px;
    text-shadow: 
        0 0 20px rgba(201, 162, 77, 0.3),
        0 0 40px rgba(201, 162, 77, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(201, 162, 77, 0.3),
            0 0 40px rgba(201, 162, 77, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(201, 162, 77, 0.5),
            0 0 60px rgba(255, 217, 102, 0.4),
            0 0 80px rgba(201, 162, 77, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

.trophy-large-new {
    font-size: 4rem;
    animation: trophySpin 5s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(201, 162, 77, 0.4));
}

@keyframes trophySpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-15deg) scale(1.15); }
    30% { transform: rotate(15deg) scale(1.15); }
    45% { transform: rotate(-10deg) scale(1.1); }
    60% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
    90% { transform: rotate(0deg) scale(1); }
}

.prizes-intro-new {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--grey-text);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.prizes-showcase-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.prize-item-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
    position: relative;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.prize-visual-wrapper {
    width: 120px;
    height: 120px;
}

.prize-content-showcase {
    text-align: center;
    flex: 1;
}

.prize-item-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.3), transparent, rgba(201, 162, 77, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.prize-item-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(201, 162, 77, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.prize-item-showcase:hover::before {
    opacity: 1;
}

.prize-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(201, 162, 77, 0.2);
    animation: orbitRotate 8s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), rgba(255, 217, 102, 0.8));
    box-shadow: 0 0 15px rgba(201, 162, 77, 0.6);
}

.orbit-ring::before {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-ring::after {
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.prize-emoji-large {
    font-size: 5rem;
    position: relative;
    z-index: 2;
    animation: emojiFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(201, 162, 77, 0.3));
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.prize-item-showcase:hover .prize-emoji-large {
    animation: emojiBounce 0.8s ease-in-out;
}

@keyframes emojiBounce {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-20px) scale(1.15) rotate(-10deg); }
    50% { transform: translateY(-10px) scale(1.1) rotate(10deg); }
    75% { transform: translateY(-15px) scale(1.12) rotate(-5deg); }
}

.prize-title-showcase {
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple-dark);
    margin-bottom: 15px;
    font-family: var(--font-head);
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prize-desc-showcase {
    font-size: 1.15rem;
    color: var(--grey-text);
    line-height: 1.7;
    font-weight: 500;
}

.prizes-note-new {
    text-align: center;
    font-size: 1rem;
    font-style: italic;
    color: var(--grey-text);
    margin-top: 30px;
    opacity: 0.8;
}

/* Responsive pour prizes v0 */
@media (max-width: 992px) {
    .prizes-showcase-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .prizes-main-title-new {
        font-size: 2.5rem;
    }
    
    .prize-title-showcase {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .prizes-showcase-new {
        grid-template-columns: 1fr;
    }
    
    .prizes-main-title-new {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .prize-emoji-large {
        font-size: 4rem;
    }
}


/* =========================================
   CORRECTIONS - HERO VIDEO V0 EXACT
   ========================================= */
/* Override previous video styles with exact V0 styles */
.video-container-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1a2e, #2d2d44);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(71, 62, 138, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.video-container-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-controls-hero {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container-hero:hover .video-controls-hero {
    opacity: 1;
}

.video-control-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.video-control-btn:hover {
    background: rgba(75, 182, 174, 0.9);
    border-color: rgba(75, 182, 174, 1);
    transform: scale(1.1);
}

.video-control-btn svg {
    width: 20px;
    height: 20px;
}

/* =========================================
   RESPONSIVE MOBILE - PRIZES 2 COLONNES
   ========================================= */
@media (max-width: 768px) {
    .prizes-showcase-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .prize-item-showcase {
        padding: 20px 15px !important;
    }
    
    .prize-visual-wrapper {
        width: 90px !important;
        height: 90px !important;
    }
    
    .prize-emoji-large {
        font-size: 3.5rem !important;
    }
    
    .prize-title-showcase {
        font-size: 1.3rem !important;
    }
    
    .prize-desc-showcase {
        font-size: 0.9rem !important;
    }
}


/* =========================================
   HERO VIDEO - STYLES V0 EXACTS (OVERRIDE COMPLET)
   ========================================= */
.portal-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1a2e, #2d2d44);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(71, 62, 138, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.portal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portal-video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portal-video-container:hover .portal-video-controls {
    opacity: 1;
}

.portal-control-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portal-control-btn:hover {
    background: rgba(75, 182, 174, 0.9);
    border-color: rgba(75, 182, 174, 1);
    transform: scale(1.1);
}

.portal-control-btn svg {
    width: 20px;
    height: 20px;
}

.portal-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--teal);
    z-index: 4;
}

.portal-tl {
    top: -8px;
    left: -8px;
    border-bottom: none;
    border-right: none;
    border-radius: 24px 0 0 0;
}

.portal-tr {
    top: -8px;
    right: -8px;
    border-bottom: none;
    border-left: none;
    border-radius: 0 24px 0 0;
}

.portal-bl {
    bottom: -8px;
    left: -8px;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 24px;
}

.portal-br {
    bottom: -8px;
    right: -8px;
    border-top: none;
    border-left: none;
    border-radius: 0 0 24px 0;
}

.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.fullscreen-modal.active {
    display: flex;
}

.close-fullscreen {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-fullscreen:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.close-fullscreen svg {
    width: 24px;
    height: 24px;
}

.fullscreen-video-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 90vh;
    max-height: 900px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.fullscreen-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fullscreen-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10000;
}