/* ========================================
    HERO VERSION 3 - PLEIN ÉCRAN VIDÉO/IMAGE
    ======================================== */
.hero-3 {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-3 .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-3 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-3 .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-3 .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
}
.hero-3 .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}
.hero-3 .badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}
.hero-3 h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 10vw, 8rem);
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero-3 h1 .outline {
    -webkit-text-stroke: 2px var(--white);
    -webkit-text-fill-color: transparent;
}
.hero-3 .description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}
.hero-3 .cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}
.hero-3 .btn-colored {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.hero-3 .btn-colored:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.25);
}
.hero-3 .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.hero-3 .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.hero-3 .stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}
.hero-3 .stat-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    line-height: 1;
}
.hero-3 .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.hero-3 .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: float 3s ease-in-out infinite;
}
.hero-3 .scroll-hint::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@media (max-width: 768px) {
    .hero-3 .stats { flex-direction: column; gap: 30px; }
    .hero-3 .cta-group { flex-direction: column; padding: 0 20px; }
    .hero-3 .btn-white, .hero-3 .btn-ghost { width: 100%; justify-content: center; }
    .hero-3 .container {
        padding-top: 10rem;
    }
}