@import url('fonts.css');

/* ===== VARIABLES ===== */
:root {
    --primary: #202C52;
    --secondary: #A43458;
    --accent: #F8F9FF;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Saira Semi Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sawarabi Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 -1px 0 rgba(255, 255, 255, 0.5) inset;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(164, 52, 88, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 52, 88, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 0 50px;
    background: #f8f9ff;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 45px,
            rgba(32, 44, 82, 0.04) 45px,
            rgba(32, 44, 82, 0.04) 46px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 45px,
            rgba(164, 52, 88, 0.03) 45px,
            rgba(164, 52, 88, 0.03) 46px
        );
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(164, 52, 88, 0.15) 0%, rgba(164, 52, 88, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 44, 82, 0.12) 0%, rgba(32, 44, 82, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 20s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: scale(1.15) translate(30px, 30px);
        opacity: 0.7;
    }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 0 60px;
        align-items: flex-start;
    }
    
    .hero .container {
        max-height: none;
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-visual {
        display: none;
    }
}

/* Tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero .container {
        max-height: calc(80vh - 160px);
    }
}

/* Écrans très courts */
@media (max-height: 700px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 40px;
    }
    
    .hero .container {
        max-height: none;
    }
}

/* Mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(180deg, #2a3a68 0%, #202C52 50%, #1a2442 100%);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 
        0 4px 12px rgba(32, 44, 82, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    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%;
    }
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.badge-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(164, 52, 88, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 52, 88, 0.3);
}

.hero-stats {
    display: flex;
    gap: 16px;
    padding: 16px 0;
}

.stat {
    position: relative;
    text-align: left;
    padding: 16px 20px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(180deg, #2a3a68 0%, #202C52 50%, #1a2442 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 24px rgba(32, 44, 82, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 120px;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(32, 44, 82, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1;
    display: block;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-container {
    position: relative;
    display: inline-block;
}

.hero-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: heroFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 40px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(180deg, #2a3a68 0%, #202C52 50%, #1a2442 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(32, 44, 82, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Effet texturé */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 42px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-large {
        width: 100%;
    }
}


/* ===== VIDEO SECTION ===== */
.video-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, 
        #f8f9ff 0%,
        #f0f2ff 50%,
        #e8ebff 100%
    );
    overflow: hidden;
}

/* Effet d'orbes flottants */
.video-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(164, 52, 88, 0.08) 0%, rgba(164, 52, 88, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb1 20s ease-in-out infinite;
    pointer-events: none;
}

.video-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(32, 44, 82, 0.08) 0%, rgba(32, 44, 82, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb2 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.4;
    }
    66% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

.video-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}
.video-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(180deg, #2a3a68 0%, #202C52 50%, #1a2442 100%);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 
        0 4px 12px rgba(32, 44, 82, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.video-label::before {
    content: '';
    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;
}

.video-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.video-label svg {
    color: #ffffff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #000;
    margin-bottom: 40px;
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* Ratio 16:9 */
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative glows */
.video-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.video-glow-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation: videoGlowFloat1 20s ease-in-out infinite;
}

.video-glow-2 {
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation: videoGlowFloat2 25s ease-in-out infinite reverse;
}

@keyframes videoGlowFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes videoGlowFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    66% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Play button overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    opacity: 1;
    cursor: pointer;
    z-index: 10;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: scale-pulse 2s ease-in-out infinite;
    padding: 0;
    pointer-events: all;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button svg circle {
    transition: all 0.3s ease;
}

.play-button:hover svg circle {
    fill-opacity: 1;
    filter: drop-shadow(0 4px 12px rgba(164, 52, 88, 0.4));
}

@keyframes scale-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar .container {
        height: 60px;
    }

    .logo img {
        height: 28px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero::before {
        width: 400px;
        height: 400px;
        top: 5%;
    }

    .hero::after {
        width: 350px;
        height: 350px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat {
        min-width: auto;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* ===== RESPONSIVE VIDEO SECTION ===== */
@media (max-width: 968px) {
    .video-section {
        padding: 80px 0;
    }
    
    .video-section::before,
    .video-section::after {
        width: 250px;
        height: 250px;
    }

    .video-header {
        margin-bottom: 40px;
    }

    .video-header h2 {
        font-size: 36px;
    }

    .video-description {
        font-size: 16px;
    }

    .video-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .video-wrapper {
        margin-bottom: 30px;
    }

    .play-button svg {
        width: 48px;
        height: 48px;
    }

    .video-glow-1,
    .video-glow-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 640px) {
    .video-header h2 {
        font-size: 28px;
    }

    .video-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .video-label svg {
        width: 16px;
        height: 16px;
    }
    
    .video-section::before,
    .video-section::after {
        width: 200px;
        height: 200px;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Process Steps */
.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Ligne centrale de connexion */
.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(65, 90, 170, 0.2) 10%,
        rgba(164, 52, 88, 0.2) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
    z-index: 0;
}

.step {
    position: relative;
    width: 50%;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternance gauche/droite avec décalage */
.step:nth-child(odd) {
    align-self: flex-start;
    padding-right: 40px;
    transform: translateY(30px);
}

.step:nth-child(even) {
    align-self: flex-end;
    padding-left: 40px;
    transform: translateY(30px);
    margin-top: -100px;  /* Décalage uniforme */
}


.step[data-step="1"] { animation-delay: 0.1s; }
.step[data-step="2"] { animation-delay: 0.2s; }
.step[data-step="3"] { animation-delay: 0.3s; }
.step[data-step="4"] { animation-delay: 0.4s; }
.step[data-step="5"] { animation-delay: 0.5s; }
.step[data-step="6"] { animation-delay: 0.6s; }

/* Connecteurs vers la ligne centrale */
.step::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(65, 90, 170, 0.3) 0%, 
        rgba(164, 52, 88, 0.3) 100%
    );
    transform: translateY(-50%);
    z-index: 1;
}

.step:nth-child(odd)::before {
    right: 8px;
}

.step:nth-child(even)::before {
    left: 8px;
}

/* Point de connexion sur la ligne centrale */
.step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #415aaa 0%, #a43458 100%);
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(32, 44, 82, 0.3);
    transform: translateY(-50%);
    z-index: 2;
}

.step:nth-child(odd)::after {
    right: -6px;
}

.step:nth-child(even)::after {
    left: -6px;
}

.step-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 
        0 4px 20px rgba(32, 44, 82, 0.08),
        0 0 0 1px rgba(32, 44, 82, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 36px rgba(32, 44, 82, 0.12),
        0 0 0 1px rgba(65, 90, 170, 0.1);
}

.step-card-highlight {
    background: linear-gradient(135deg, #415aaa 0%, #a43458 100%);
    color: #ffffff;
}

.step-card-highlight .step-content h3,
.step-card-highlight .step-content p,
.step-card-highlight .benefits-list {
    color: #ffffff;
}

.step-card-highlight .step-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.step-card-highlight .step-icon svg {
    color: #ffffff;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(65, 90, 170, 0.1) 0%, rgba(164, 52, 88, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 8px;
}

.step-highlight {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(65, 90, 170, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.step-card-highlight .step-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 13px;
    padding: 5px 0;
    line-height: 1.5;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #415aaa 0%, #a43458 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(32, 44, 82, 0.2);
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
    .process-steps::before {
        left: 25px;
    }

    .step {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 20px !important;
        margin-top: 0 !important;
        margin-bottom: 20px;
    }

    .step:nth-child(odd),
    .step:nth-child(even) {
        align-self: stretch;
    }

    .step::before {
        width: 35px;
        left: 19px !important;
        right: auto !important;
    }

    .step::after {
        left: 19px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .process-steps {
        padding: 0 20px;
    }

    .process-steps::before {
        left: 18px;
    }

    .step {
        padding-left: 55px !important;
        margin-bottom: 16px;
    }

    .step::before {
        width: 28px;
        left: 12px !important;
    }

    .step::after {
        left: 12px !important;
    }

    .step-card {
        padding: 16px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
        top: 14px;
        right: 14px;
    }

    .step-icon {
        width: 38px;
        height: 38px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-content h3 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 12px;
    }

    .benefits-list li {
        font-size: 12px;
    }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1f35 0%, #0f1219 100%);
    overflow: hidden;
    z-index: 1;
}

/* Effet d'ambiance avec des orbes */
.partners-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(164, 52, 88, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 90, 170, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Badge corail */
.partners-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(
        135deg,
        rgba(164, 52, 88, 0.15) 0%,
        rgba(164, 52, 88, 0.25) 100%
    );
    border: 1px solid rgba(164, 52, 88, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b9d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.partners-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.partners-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.partners-header .gradient-text {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slider infini */
.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    z-index: 2;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.partners-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(164, 52, 88, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 157, 0.2);
    z-index: 20;
}

/* Logos à taille uniforme */
.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 140px;
    max-height: 40px;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-header {
        margin-bottom: 40px;
    }

    .partners-header h2 {
        font-size: 28px;
    }

    .partners-label {
        font-size: 12px;
        padding: 8px 16px;
    }

    .partners-slider {
        padding: 15px 0;
    }

    .partners-track {
        gap: 40px;
    }

    .partner-logo {
        width: 140px;
        height: 60px;
        padding: 16px;
    }

    .partner-logo img {
        max-width: 100px;
        max-height: 28px;
    }
}

/* ===== SECONDARY CTA SECTION ===== */
.secondary-cta-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(180deg, #0f1219 0%, #1a1f35 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.secondary-cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: 
        linear-gradient(135deg, rgba(65, 90, 170, 0.08) 0%, rgba(164, 52, 88, 0.08) 100%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Effet grille */
.secondary-cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.secondary-cta-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 90, 170, 0.2) 0%, rgba(164, 52, 88, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ff6b9d;
    position: relative;
    z-index: 1;
}

.secondary-cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.secondary-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.secondary-cta-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.secondary-cta-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.secondary-cta-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(164, 52, 88, 0.2) 0%, rgba(65, 90, 170, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary-cta-link:hover {
    border-color: rgba(164, 52, 88, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(164, 52, 88, 0.2);
}

.secondary-cta-link:hover::before {
    opacity: 1;
}

.secondary-cta-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.secondary-cta-link:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .secondary-cta-section {
        padding: 30px 0;
    }

    .secondary-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .secondary-cta-title {
        font-size: 16px;
    }

    .secondary-cta-description {
        font-size: 13px;
    }

    .secondary-cta-link {
        width: 100%;
        justify-content: center;
    }
}


/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, #0b0e16 0%, #060810 100%);
    padding: 32px 0;
    border-top: 1px solid rgba(147, 197, 253, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* Left Section */
.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Navigation */
.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-right {
        align-items: center;
    }
}

/* ============================================================
   PAGES LÉGALES (Mentions légales, Politique de confidentialité)
   ============================================================ */

.legal-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-600);
    line-height: 1.8;
}

.legal-container h1 {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.legal-container .legal-updated {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-container h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.5rem;
}

.legal-container p {
    margin: 0.75rem 0;
}

.legal-container ul {
    margin: 0.5rem 0 1rem 1.5rem;
    list-style: disc;
}

.legal-container li {
    margin: 0.25rem 0;
}

.legal-container a {
    color: #7c3aed;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.legal-container a:hover {
    color: #5b21b6;
}

.legal-container strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Tableaux traitements */
.legal-container .table-responsive {
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-table thead {
    background: #f3f4f6;
}

.legal-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #e5e7eb;
}

.legal-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: var(--gray-600);
    vertical-align: top;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover {
    background: #f9fafb;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 20px 60px;
    }

    .legal-container h1 {
        font-size: 1.6rem;
    }

    .legal-container h2 {
        font-size: 1.15rem;
    }

    .legal-table {
        font-size: 0.8rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.5rem 0.75rem;
    }
}
