/* ============================================
   SUCCÈS EN DIRECT - DESIGN LUXUEUX
   Chartre graphique officielle
   ============================================ */

/* ----- VARIABLES ----- */
:root {
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFE55C;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray: #3A3A3A;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    
    --font-title: 'Queen of Camelot', 'Montserrat', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ----- TYPOGRAPHIE ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 400;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
}

h1 {
    font-size: 64px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

h2 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    text-align: center;
}

.section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

/* ----- BOUTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 40px;
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--gold .btn__glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn--gold:hover .btn__glow {
    left: 100%;
}

.btn--outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 40px;
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* ----- PRELOADER ----- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Conteneur du logo */
.preloader__ring {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbite qui tourne */
.preloader__orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: orbitSpin 8s linear infinite;
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo fixe au centre */
.preloader__logo {
    width: 50px;
    height: 50px;
    animation: logoBreath 3s ease infinite;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.3));
}

@keyframes logoBreath {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Halo lumineux */
.preloader__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

/* Texte */
.preloader__text {
    margin-top: 28px;
    font-family: var(--font-title);
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--gold);
    opacity: 0.6;
    animation: textPulse 3s ease infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

/* ----- HEADER ----- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header--scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.site-logo__icon {
    width: 50px;
    height: 50px;
    color: var(--gold);
    transition: var(--transition);
}

.site-logo:hover .site-logo__icon {
    transform: scale(1.05);
}

.logo-ring {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawRing 1s ease forwards;
}

.logo-bolt {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawBolt 0.8s ease 0.3s forwards;
}

@keyframes drawRing {
    to { stroke-dashoffset: 0; }
}

@keyframes drawBolt {
    to { stroke-dashoffset: 0; }
}

.site-logo__text {
    font-family: var(--font-title);
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
}

/* Navigation */
.site-nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.site-nav__list li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.site-nav__list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.site-nav__list li a:hover::after,
.site-nav__list li.current-menu-item a::after {
    width: 100%;
}

.site-nav__list li a:hover {
    color: var(--gold);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ----- HERO SECTION ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
}

.hero__ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
}

/* ----- PARTNERS SECTION ----- */
.partners {
    padding: 60px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.partners__slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner {
    opacity: 0.6;
    transition: var(--transition);
}

.partner:hover {
    opacity: 1;
}

.partner img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ----- ABOUT CARDS ----- */
.about {
    background: var(--black);
}

.about__description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
    left: 100%;
}

.card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card__number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.card__value {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ----- INVESTORS SECTION ----- */
.investors {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.investors__header {
    text-align: center;
    margin-bottom: 60px;
}

.investors__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin: 15px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Container du carrousel */
.investors__carousel {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
}

/* Swiper slide - largeur fixe */
.swiper-slide {
    height: auto !important;
}

/* CARD - TAILLE UNIFORME */
.investor-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px; /* Hauteur minimale fixe */
}

/* Image container - taille fixe */
.investor-card__image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px; /* Hauteur fixe pour toutes les images */
    flex-shrink: 0;
}

.investor-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.investor-card:hover .investor-card__image img {
    transform: scale(1.08);
}

/* Effet de glow sur l'image */
.investor-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.investor-card:hover .investor-card__glow {
    opacity: 1;
}

/* Content - zone flexible avec hauteur fixe */
.investor-card__content {
    padding: 25px 20px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px; /* Hauteur minimale pour le contenu */
}

.investor-card__content h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
    font-family: var(--font-title);
    letter-spacing: 1px;
    line-height: 1.3;
    min-height: 58px; /* Hauteur fixe pour le titre (2 lignes max) */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bio - hauteur fixe avec ellipsis */
.investor-card__bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 20px 0;
    min-height: 63px; /* Hauteur fixe pour 3 lignes de texte */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lien */
.investor-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: auto;
    padding: 8px 0;
}

.investor-card__link span {
    transition: transform 0.3s;
}

.investor-card__link:hover {
    gap: 12px;
}

.investor-card__link:hover span {
    transform: translateX(5px);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    color: var(--gold);
    font-weight: bold;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: var(--black);
}

.swiper-pagination-bullet {
    background: rgba(255, 215, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Fallback pour grille (si Swiper ne charge pas) */
.investors__grid-fallback .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .investor-card {
        min-height: 460px;
    }
    
    .investor-card__image {
        height: 260px;
    }
    
    .investor-card__content h3 {
        font-size: 20px;
        min-height: 52px;
    }
    
    .investor-card__bio {
        font-size: 13px;
        min-height: 58px;
    }
}

@media (max-width: 768px) {
    .investors {
        padding: 60px 0;
    }
    
    .investor-card {
        min-height: 440px;
    }
    
    .investor-card__image {
        height: 240px;
    }
    
    .investor-card__content {
        padding: 20px 15px 25px;
    }
    
    .investor-card__content h3 {
        font-size: 18px;
        min-height: 48px;
    }
    
    .investor-card__bio {
        font-size: 12px;
        min-height: 54px;
        -webkit-line-clamp: 3;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .investor-card {
        min-height: 420px;
    }
    
    .investor-card__image {
        height: 220px;
    }
    
    .investor-card__content h3 {
        font-size: 16px;
        min-height: 44px;
    }
}

/* ----- NEWS SECTION ----- */
.news {
    padding: 100px 0;
    background: var(--black);
}

.news__header {
    text-align: center;
    margin-bottom: 60px;
}

.news__header p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 20px auto;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card__content {
    padding: 25px;
}

.news-card__writer {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.news-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.news-card a:hover {
    letter-spacing: 2px;
}

/* ----- FOOTER ----- */
.site-footer {
    background: #050505;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-ring {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-social a:hover svg {
    fill: var(--black);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ----- ANIMATIONS ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .site-footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--black);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .site-nav__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .site-header__cta {
        display: none;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about__cards {
        grid-template-columns: 1fr;
    }
    
    .investors__grid {
        grid-template-columns: 1fr;
    }
    
    .news__grid {
        grid-template-columns: 1fr;
    }
    
    .site-footer__links {
        grid-template-columns: 1fr;
    }
    
    .site-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ----- SOUS-MENU ----- */
.menu-item-has-children {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.menu-item-has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
}

.submenu li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

/* Mobile - sous-menu */
@media (max-width: 768px) {
    .submenu {
        position: static;
        background: rgba(255, 215, 0, 0.05);
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        margin-top: 10px;
        border: none;
        display: none;
    }
    
    .menu-item-has-children.active .submenu {
        display: block;
    }
}

/* ----- HERO AVEC VIDÉO ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Vidéo de fond */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: videoZoom 20s ease infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Overlay pour le contraste */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

/* Anneau rotatif (charte graphique) */
.hero__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    z-index: 2;
    animation: ringRotate 30s linear infinite;
}

.hero__ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66%;
    height: 66%;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
}

.hero__ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 33%;
    height: 33%;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Effets lumineux (charte graphique) */
.hero__light-effect {
    position: absolute;
    top: 20%;
    left: -20%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: lightMove 15s ease infinite;
}

.hero__light-effect-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: lightMove2 12s ease infinite alternate;
}

@keyframes lightMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(10%, 10%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes lightMove2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-15%, -10%) scale(1.3);
        opacity: 0.6;
    }
}

/* Contenu hero */
.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero__content {
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__description {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}



/* Boutons hero */
.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 40px;
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--gold .btn__glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn--gold:hover .btn__glow {
    left: 100%;
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: bounce 2s ease infinite;
}

.hero__scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ----- RESPONSIVE HERO ----- */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 48px;
    }
    
    .hero__description {
        font-size: 18px;
    }
    
    .hero__ring {
        width: 90vw;
        height: 90vw;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }
    
    .hero__description {
        font-size: 16px;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero__scroll-indicator {
        bottom: 20px;
    }
    
    .hero__ring {
        width: 95vw;
        height: 95vw;
    }
}

.about__positioning {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 215, 0, 0.01) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.positioning__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.positioning__text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.gold-text {
    color: var(--gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.gold-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Citation */
.positioning__quote {
    margin: 40px 0;
    position: relative;
}

.quote-mark {
    font-size: 80px;
    font-family: var(--font-title);
    color: rgba(255, 215, 0, 0.2);
    position: absolute;
    line-height: 1;
}

.quote-mark:first-child {
    top: -30px;
    left: -20px;
}

.quote-mark:last-child {
    bottom: -50px;
    right: -20px;
}

.positioning__quote p {
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 0;
    padding: 0 40px;
}

/* Tagline finale */
.positioning__tagline {
    font-size: 22px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.positioning__tagline strong {
    font-size: 28px;
    font-family: var(--font-title);
    color: var(--gold);
    letter-spacing: 2px;
}

/* Éléments décoratifs */
.positioning__decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border: 1px solid rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    animation: ringPulse 8s ease infinite;
}

.decoration-light {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
    filter: blur(40px);
    animation: lightFloat 10s ease infinite alternate;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

@keyframes lightFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-30px, -30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about__positioning {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .positioning__text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .quote-mark {
        font-size: 50px;
    }
    
    .quote-mark:first-child {
        top: -20px;
        left: -10px;
    }
    
    .quote-mark:last-child {
        bottom: -30px;
        right: -10px;
    }
    
    .positioning__quote p {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .positioning__tagline {
        font-size: 18px;
    }
    
    .positioning__tagline strong {
        font-size: 22px;
    }
}

.investors {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.investors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03), transparent);
    pointer-events: none;
}

.investors__header {
    text-align: center;
    margin-bottom: 60px;
}

.investors__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin: 15px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Swiper Container */
.investors__carousel {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
}

/* Investor Card */
.investor-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.investor-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.1);
}

/* Image container */
.investor-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.investor-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.investor-card:hover .investor-card__image img {
    transform: scale(1.08);
}

/* Effet de glow sur l'image */
.investor-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.investor-card:hover .investor-card__glow {
    opacity: 1;
}

/* Content */
.investor-card__content {
    padding: 25px 20px 30px;
    text-align: center;
    position: relative;
}

.investor-card__content h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.investor-card__function {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 500;
}

.investor-card__bio {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 20px;
}

.investor-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.investor-card__link span {
    transition: transform 0.3s;
}

.investor-card__link:hover {
    gap: 12px;
}

.investor-card__link:hover span {
    transform: translateX(5px);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    color: var(--gold);
    font-weight: bold;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: var(--black);
}

.swiper-pagination-bullet {
    background: rgba(255, 215, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .investors {
        padding: 60px 0;
    }
    
    .investor-card__content h3 {
        font-size: 18px;
    }
    
    .investor-card__function {
        font-size: 12px;
    }
}

.investor-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gray-dark), var(--black-light));
}

/* Fallback si l'image ne charge pas */
.investor-card__image img[src*="default"] {
    object-fit: contain;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,215,0,0.02));
}

/* ============================================
   SECTION INTERACTIVE - PASSEZ À L'ACTION
   ============================================ */

.action-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 100, 50, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.action-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ----- BADGE ----- */
.action-section__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.1);
    }
}

/* ----- TITRE ----- */
.action-section__title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--white);
}

.action-section__title::after {
    display: none;
}

.text-gold {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

/* .text-gold::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    z-index: -1;
} */

/* ----- DESCRIPTION ----- */
.action-section__description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.action-section__description strong {
    color: var(--white);
    font-weight: 600;
}

/* ----- ÉTAPES ----- */
.action-section__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.action-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.action-step:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.15);
    transform: translateX(10px);
}

.action-step__number {
    font-family: var(--font-title);
    font-size: 28px;
    color: rgba(255, 215, 0, 0.3);
    line-height: 1;
    min-width: 50px;
    transition: color 0.4s ease;
}

.action-step:hover .action-step__number {
    color: var(--gold);
}

.action-step__content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.action-step__content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ----- BOUTON ACTION ----- */
.btn--action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF4D4D, #FF3333);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.3);
}

.btn--action:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 77, 77, 0.4);
}

.btn--action:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-action__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn--action:hover .btn-action__icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-action__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: actionPulse 2s ease infinite;
}

@keyframes actionPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* ----- CÔTÉ VISUEL ----- */
.action-section__visual {
    position: relative;
}

.action-visual__container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.action-visual__main {
    position: relative;
    z-index: 3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 77, 77, 0.1);
    transition: all 0.6s ease;
}

.action-visual__main:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 77, 77, 0.15);
}

.action-visual__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.action-visual__main:hover .action-visual__image {
    transform: scale(1.05);
}

/* ----- ÉLÉMENTS FLOTTANTS ----- */
.action-visual__float {
    position: absolute;
    z-index: 4;
    color: var(--gold);
    animation: floatBounce 4s ease infinite;
}

.action-visual__float--1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.action-visual__float--2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
    color: #4CAF50;
}

.action-visual__float--3 {
    bottom: -10px;
    right: 20%;
    animation-delay: 2s;
    color: #FF9800;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* ----- ANNEAU DÉCORATIF ----- */
.action-visual__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px dashed rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: ringRotate 40s linear infinite;
    z-index: 1;
}

/* ----- POINTS LUMINEUX ----- */
.action-visual__dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
    animation: dotPulse 3s ease infinite;
}

.action-visual__dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: dotGlow 3s ease infinite;
}

.action-visual__dot--1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.action-visual__dot--2 {
    bottom: 20%;
    left: 0%;
    animation-delay: 0.75s;
    background: #FF4D4D;
}

.action-visual__dot--2::after {
    background: rgba(255, 77, 77, 0.2);
}

.action-visual__dot--3 {
    top: 50%;
    right: -5%;
    animation-delay: 1.5s;
}

.action-visual__dot--4 {
    bottom: 5%;
    left: 20%;
    animation-delay: 2.25s;
    background: #4CAF50;
}

.action-visual__dot--4::after {
    background: rgba(76, 175, 80, 0.2);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes dotGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ----- EFFET GLOW ----- */
.action-visual__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 5s ease infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ----- TEXTE ARRIÈRE-PLAN ----- */
.action-visual__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-title);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 77, 77, 0.03);
    letter-spacing: 20px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

/* ----- SÉPARATEUR ----- */
.action-section__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 80px;
    padding: 0 40px;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.separator-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 3s ease infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .action-section {
        padding: 80px 0 60px;
    }
    
    .action-section__inner {
        gap: 50px;
    }
    
    .action-section__title {
        font-size: 40px;
    }
    
    .action-visual__bg-text {
        font-size: 150px;
    }
}

@media (max-width: 768px) {
    .action-section {
        padding: 60px 0 40px;
    }
    
    .action-section__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .action-section__visual {
        order: -1;
    }
    
    .action-visual__container {
        max-width: 350px;
    }
    
    .action-section__title {
        font-size: 32px;
    }
    
    .action-section__description {
        font-size: 15px;
    }
    
    .action-step {
        padding: 16px;
        gap: 15px;
    }
    
    .action-step__number {
        font-size: 22px;
        min-width: 40px;
    }
    
    .btn--action {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .action-visual__float--1 {
        top: -10px;
        right: -10px;
    }
    
    .action-visual__float--2 {
        left: -15px;
    }
    
    .action-visual__bg-text {
        font-size: 120px;
    }
    
    .action-section__separator {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .action-section__title {
        font-size: 28px;
    }
    
    .action-visual__container {
        max-width: 280px;
    }
    
    .action-visual__bg-text {
        font-size: 100px;
    }
    
    .action-visual__float {
        display: none;
    }
}

/* ============================================
   SECTION MAGAZINE - ARTICLES (FLUIDE)
   ============================================ */

.magazine {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.magazine__header {
    text-align: center;
    margin-bottom: 70px;
}

.magazine__subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    max-width: 550px;
    margin: 20px auto 30px;
    line-height: 1.6;
}

/* ----- GRILLE ----- */
.magazine__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* ----- CARTE BASE ----- */
.mag-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
    transition: 
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.mag-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ----- GRANDS ----- */
.mag-card--lg {
    flex: 1 1 calc(50% - 12px);
    min-width: 320px;
}

.mag-card--lg .mag-card__image {
    height: 280px;
}

.mag-card--lg .mag-card__content {
    padding: 28px;
}

.mag-card--lg .mag-card__content h3 {
    font-family: var(--font-title);
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.35;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.mag-card--lg:hover .mag-card__content h3 {
    color: var(--gold);
}

/* ----- PETITS ----- */
.mag-card--sm {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
}

.mag-card--sm .mag-card__image {
    height: 180px;
}

.mag-card--sm .mag-card__content {
    padding: 20px 22px 24px;
}

.mag-card--sm .mag-card__content h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 14px;
    transition: color 0.4s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mag-card--sm:hover .mag-card__content h3 {
    color: var(--gold);
}

/* ----- IMAGE ----- */
.mag-card__image {
    position: relative;
    overflow: hidden;
}

.mag-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mag-card:hover .mag-card__image img {
    transform: scale(1.06);
}

.mag-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

/* ----- CATEGORY ----- */
.mag-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 3;
    transition: background 0.3s ease;
}

.mag-card:hover .mag-card__category {
    background: var(--gold);
}

/* ----- LIEN ----- */
.mag-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.mag-card:hover .mag-card__link {
    gap: 12px;
}

.mag-card__link svg {
    transition: transform 0.3s ease;
}

.mag-card:hover .mag-card__link svg {
    transform: translateX(3px);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .magazine {
        padding: 80px 0;
    }

    .mag-card--lg,
    .mag-card--sm {
        flex: 1 1 100%;
        min-width: unset;
    }

    .mag-card:hover {
        transform: scale(1.01);
    }

    .mag-card--lg .mag-card__image {
        height: 220px;
    }

    .mag-card--sm .mag-card__image {
        height: 180px;
    }

    .mag-card--lg .mag-card__content h3 {
        font-size: 18px;
    }

    .mag-card--sm .mag-card__content h3 {
        font-size: 15px;
    }
}

/* ============================================
   SECTION PARTENAIRES CARROUSEL
   ============================================ */

.partners-carousel {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.partners-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.02), transparent);
    pointer-events: none;
}

/* En-tête */
.partners-carousel__header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-carousel__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 550px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Container du carrousel */
.partners-carousel__slider {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
}

/* Carte partenaire */
.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    padding: 30px 20px 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

/* Logo */
.partner-card__logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 60px;
    transition: all 0.4s ease;
}

.partner-card__logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-card__logo img {
    opacity: 1;
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

/* Effet glow */
.partner-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.partner-card:hover .partner-card__glow {
    opacity: 1;
}

/* Contenu */
.partner-card__content {
    text-align: center;
}

.partner-card__content h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0;
    text-transform: none;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-card__content h3 {
    color: var(--gold);
}

.partner-card__content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Message de confiance */
.partners-carousel__trust {
    text-align: center;
    margin-top: 50px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 40px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
}

/* Navigation Swiper personnalisée pour partenaires */
.partners-carousel__slider .swiper-button-prev,
.partners-carousel__slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
}

.partners-carousel__slider .swiper-button-prev::after,
.partners-carousel__slider .swiper-button-next::after {
    font-size: 16px;
    color: var(--gold);
}

.partners-carousel__slider .swiper-button-prev:hover,
.partners-carousel__slider .swiper-button-next:hover {
    background: var(--gold);
}

.partners-carousel__slider .swiper-button-prev:hover::after,
.partners-carousel__slider .swiper-button-next:hover::after {
    color: var(--black);
}

.partners-carousel__slider .swiper-pagination-bullet {
    background: rgba(255, 215, 0, 0.3);
}

.partners-carousel__slider .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Éléments décoratifs */
.partners-carousel__decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    pointer-events: none;
}

.decoration-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.decoration-dots {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2), 12px 0 0 var(--gold), -12px 0 0 var(--gold);
}

/* ----- RESPONSIVE PARTENAIRES ----- */
@media (max-width: 1024px) {
    .partners-carousel {
        padding: 60px 0 80px;
    }
    
    .partner-card__logo {
        width: 100px;
        height: 100px;
    }
    
    .partners-carousel__slider .swiper-button-prev,
    .partners-carousel__slider .swiper-button-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .partners-carousel {
        padding: 50px 0 60px;
    }
    
    .partners-carousel__header {
        margin-bottom: 40px;
    }
    
    .partners-carousel__subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .partner-card {
        padding: 25px 15px 20px;
    }
    
    .partner-card__logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .partner-card__content h3 {
        font-size: 16px;
    }
    
    .partner-card__content p {
        font-size: 10px;
    }
    
    .trust-badge {
        padding: 6px 18px;
        font-size: 11px;
    }
}

/* ============================================
   PAGE 404 - ERREUR
   ============================================ */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #0a0505 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.error-page__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 600px;
    max-height: 600px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.error-page__ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 1px solid rgba(255, 215, 0, 0.05);
    border-radius: 50%;
}

.error-page__light {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    filter: blur(60px);
    animation: lightPulse 3s ease infinite;
}

.error-page__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-page__code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.error-digit {
    font-size: 120px;
    font-weight: 800;
    font-family: var(--font-title);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.error-digit--zero {
    position: relative;
}

.error-digit--zero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: zeroPulse 1.5s ease infinite;
}

@keyframes zeroPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.error-page__title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.error-page__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-page__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.error-page__suggestion {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.error-page__suggestion p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 16px;
}

.error-page__suggestion ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
}

.error-page__suggestion ul li a {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.error-page__suggestion ul li a:hover {
    color: var(--white);
    letter-spacing: 2px;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
    .error-digit {
        font-size: 80px;
    }
    
    .error-digit--zero::before {
        width: 55px;
        height: 55px;
    }
    
    .error-page__title {
        font-size: 28px;
    }
    
    .error-page__description {
        font-size: 16px;
    }
    
    .error-page__actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .error-page__suggestion ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ============================================
   PAGE VIDÉOS
   ============================================ */

/* ----- EN-TÊTE ----- */
.videos-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.videos-header__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.videos-header__title {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.videos-header__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ----- FILTRES PAYS ----- */
.videos-filters {
    padding: 60px 0;
    background: var(--black-light);
    position: relative;
}

.filters-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--white);
}

.filters-carousel {
    padding: 20px 0;
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.country-card.active {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.country-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.country-card__flag {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-card__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-card__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.country-card__glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.country-card:hover .country-card__glow {
    left: 100%;
}

/* ----- SAISONS ----- */
.videos-seasons {
    padding: 60px 0;
    background: var(--black);
}

.seasons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.seasons-title {
    font-size: 32px;
    margin: 0;
}

.gold-text {
    color: var(--gold);
}

.seasons-controls {
    display: flex;
    gap: 10px;
}

.seasons-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.seasons-controls button:hover:not(:disabled) {
    background: var(--gold);
    color: var(--black);
}

.seasons-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.season-card {
    display: block;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.season-card:hover,
.season-card.active {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-5px);
}

.season-card__number {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.season-card__year {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.season-card__name {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 15px;
}

.season-card__episodes {
    font-size: 12px;
    color: rgba(255, 215, 0, 0.7);
    letter-spacing: 1px;
}

/* ----- GRILLE VIDÉOS ----- */
.videos-grid-section {
    padding: 60px 0 100px;
    background: var(--black-light);
}

.videos-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.videos-grid-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.videos-grid-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 15px;
}

.videos-grid-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 30px;
}

.videos-grid-badge span {
    font-size: 13px;
    color: var(--gold);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-card__thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .video-card__thumbnail img {
    transform: scale(1.05);
}

.video-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-card__overlay {
    opacity: 1;
}

.video-card__play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card__play:hover {
    transform: scale(1.1);
    background: var(--gold);
}

.video-card__play svg {
    width: 28px;
    height: 28px;
    fill: var(--black);
}

.video-card__duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--white);
}

.video-card__content {
    padding: 20px;
}

.video-card__entrepreneur {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.video-card__content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.video-card__content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-card__watch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.video-card__watch:hover {
    gap: 12px;
}

/* ----- MODAL VIDÉO ----- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.video-modal__container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2;
}

.video-modal__close:hover {
    color: var(--gold);
}

.video-modal__player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
}

.video-modal__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal__info {
    padding: 15px 0 0;
    color: var(--white);
    text-align: center;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .videos-header__title {
        font-size: 42px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-header {
        min-height: 50vh;
        padding: 80px 0;
    }
    
    .videos-header__title {
        font-size: 32px;
    }
    
    .videos-header__description {
        font-size: 16px;
    }
    
    .filters-title {
        font-size: 24px;
    }
    
    .seasons-title {
        font-size: 24px;
    }
    
    .seasons-header {
        flex-direction: column;
        text-align: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid-title {
        font-size: 28px;
    }
    
    .country-card__flag {
        width: 50px;
        height: 50px;
    }
    
    .country-card__name {
        font-size: 12px;
    }
}

/* ============================================
   PAGE CANDIDATURE
   ============================================ */

/* ----- EN-TÊTE ----- */
.candidature-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.candidature-header__content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.candidature-header__title {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.candidature-header__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.candidature-header__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ----- SECTION PRINCIPALE ----- */
.candidature-main {
    padding: 80px 0;
    background: var(--black);
}

.candidature-main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Formulaire */
.candidature-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.candidature-form__header {
    text-align: center;
    margin-bottom: 30px;
}

.candidature-form__header p {
    color: rgba(255, 255, 255, 0.6);
}

.alert {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.alert--success {
    background: rgba(0, 200, 100, 0.1);
    border-left: 3px solid #00c864;
    color: #00c864;
}

.form-group {
    margin-bottom: 20px;
}

.form-group--half {
    display: inline-block;
    width: calc(50% - 10px);
    margin-right: 20px;
}

.form-group--half:nth-child(even) {
    margin-right: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.required {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #ff4444;
    margin-top: 5px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.input-with-icon input {
    padding-left: 45px;
}

small {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload label:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--gold);
    text-decoration: none;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Liste des candidats */
.candidats-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.candidats-list__header {
    text-align: center;
    margin-bottom: 30px;
}

.candidats-list__header p {
    color: rgba(255, 255, 255, 0.6);
}

.candidats-list__filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.candidats-list__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.candidats-list__grid::-webkit-scrollbar {
    width: 5px;
}

.candidats-list__grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.candidats-list__grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.candidat-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.candidat-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.05);
}

.candidat-card__avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--black);
    font-size: 18px;
}

.candidat-card__content {
    flex: 1;
}

.candidat-card__content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
}

.candidat-card__project {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 8px;
}

.candidat-card__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.candidat-card__country,
.candidat-card__amount {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.candidat-card__status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.status-warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-info {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
}

.status-primary {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.status-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.candidats-list__empty {
    text-align: center;
    padding: 50px 20px;
}

.candidats-list__empty svg {
    margin-bottom: 20px;
    color: rgba(255, 215, 0, 0.3);
}

.candidats-list__empty h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Pourquoi candidater */
.why-candidature {
    padding: 80px 0;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.why-candidature__header {
    text-align: center;
    margin-bottom: 60px;
}

.why-candidature__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
}

.why-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold);
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Témoignages */
.testimonials {
    padding: 80px 0;
    background: var(--black);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__slider {
    padding: 20px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial-card__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__name {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-card__project {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .candidature-main__grid {
        grid-template-columns: 1fr;
    }
    
    .why-candidature__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .candidature-header__title {
        font-size: 32px;
    }
    
    .candidature-header__stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px 20px;
    }
    
    .candidature-form {
        padding: 25px;
    }
    
    .form-group--half {
        width: 100%;
        margin-right: 0;
    }
    
    .why-candidature__grid {
        grid-template-columns: 1fr;
    }
    
    .candidats-list__filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}

