@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* --- HEADER INITIAL (Transparent / Blanc) --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: transparent;
}

.left-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white; /* Texte en blanc sur la vidéo */
    font-weight: 500;
    transition: 0.3s;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.left-side .logo img{
    width: auto;
    height: 20px;
    filter: brightness(0) invert(1); 
    transition: filter 0.4s ease;
    margin-top: 8px;
}

/* Force les icônes SVG en blanc quand c'est transparent */
.social-icons img, .logo img {
    width: 25px;
    height: auto;
    filter: brightness(0) invert(1); 
    transition: filter 0.4s ease;
}

.logo img {
    height: 45px;
}

/* --- ÉTAT SCROLLÉ (Fond blanc / Texte noir) --- */
.header-container.scrolled {
    background-color: white;
    padding: 15px 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container.scrolled .nav-links a {
    color: black;
}

.header-container.scrolled .separator {
    color: #ccc;
}

/* Remet les icônes en noir/couleur d'origine */
.header-container.scrolled .social-icons img,
.header-container.scrolled .logo img {
    filter: none;
}

/* --- SECTION SLIDER / VIDÉO --- */
.slider .home {
    position: relative;
    min-height: 100vh; /* Prend toute la hauteur de l'écran */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider .home::before {
    z-index: 1;
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2); /* Filtre sombre pour lire le texte */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slider .home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slider .home .content {
    z-index: 2;
    color: #fff;
    text-align: center;
}

.slider .home .content img {
    width: 100%;
}


/* Transition de la vidéo (ton code clip-path) */
.video-slide {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%, 100% 50%);
}

.video-slide.active {
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%, -40% 50%);
    transition: 2s ease;
}







/* Section service */
/* Section Agence 3D */
.agency-section {
    padding: 100px 5%;
    background-color: #f9f9f9; /* Gris très clair comme sur l'image */
    color: #111;
}

.agency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px; /* Espace entre texte et vidéo */
}

/* Texte */
.agency-text {
    flex: 1;
}

.small-info {
    font-size: 0.9em;
    font-style: italic;
    border-left: 3px solid #76ff03;
    padding-left: 15px;
    color: #666;
    margin-top: 20px;
}

.agency-text h2 {
    font-size: 2.8em;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.agency-text .highlight {
    color: #76ff03; /* Le vert fluo pour le rappel 3D/Tech */
    -webkit-text-stroke: 1px #111; /* Petit effet de contour si tu veux */
}

.agency-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

/* Bouton Vert Fluo */
.btn-start {
    display: inline-block;
    background-color: #76ff03;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(118, 255, 3, 0.3);
}

/* Bloc Vidéo */
.agency-video {
    flex: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Bouton Play au centre */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive pour tablettes et mobiles */
@media (max-width: 900px) {
    .agency-container {
        flex-direction: column;
        text-align: center;
    }
    
    .agency-text h2 {
        font-size: 2em;
    }
}










.pivot-selection {
    padding: 60px 5%;
    background: #fff;
    text-align: center;
}

.pivot-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.pivot-item {
    flex: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.4; /* Gris par défaut */
    padding: 20px;
}

.pivot-item.active {
    opacity: 1; /* Sélectionné */
}

.pivot-divider {
    width: 1px;
    background: #eee;
}

.pivot-sub {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin: 15px 0 5px;
}

.pivot-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.pivot-text {
    font-size: 0.9rem;
    color: #666;
    max-width: 250px;
    margin: 0 auto 20px;
}

/* La ligne sous le bouton sélectionné */
.pivot-line {
    height: 4px;
    width: 0;
    background: #76ff03;
    margin: 0 auto;
    transition: width 0.4s ease;
}

.pivot-item.active .pivot-line {
    width: 100%;
}

@media (max-width: 768px) {
    .pivot-container { flex-direction: column; }
    .pivot-divider { height: 1px; width: 100%; }
}






.project-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 5px 0;
    /* border-bottom: 1px solid rgba(118, 255, 3, 0.3); */
} 




















.business-intro {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #111;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tagline {
    color: #76ff03;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8em;
    margin-bottom: 15px;
}

.business-intro h2 {
    font-size: 3em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 60px;
    max-width: 900px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 entre texte et vidéo */
    gap: 80px;
    align-items: center;
}

.intro-text p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* La boîte vidéo à droite */
.video-box {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    aspect-ratio: 1 / 1; /* Format carré très "Instagram/Luxe" */
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: #76ff03;
    padding: 8px 15px;
    font-size: 0.7em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.btn-business {
    display: inline-block;
    padding: 18px 40px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-business:hover {
    background-color: #76ff03;
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .business-intro h2 { font-size: 2.2em; }
    .video-box { aspect-ratio: 16 / 9; }
}








.project-hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Prend 80% de la hauteur de l'écran */
    display: flex;
    align-items: center; /* Centre le texte verticalement */
    overflow: hidden;
    color: white;
}

/* La vidéo en plein écran */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit tout l'espace sans déformer */
    z-index: 1;
}

/* Filtre sombre pour que le texte ressorte bien */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Ajuste l'opacité selon tes besoins */
    z-index: 2;
}

.project-content {
    position: relative;
    z-index: 3;
    padding-left: 5%; /* Aligne le texte à gauche selon ton dessin */
    max-width: 600px;
}

.project-title {
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
}

.project-desc {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-more {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #76ff03; /* Rappel du vert fluo */
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #76ff03;
    color: black;
}

/* Responsive pour tablettes et mobiles */
@media (max-width: 768px) {
    .project-title { font-size: 2.5em; }
    .project-desc { font-size: 1em; }
    .project-hero { height: 60vh; }
}

/* --- ANIMATIONS --- */

/* Titre : Glisse depuis la gauche */
.anim-slide {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Description : Fondu simple et élégant */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
    transition-delay: 0.3s; /* Commence un peu après le titre */
}

/* État quand l'utilisateur arrive sur la section */
.project-hero.active .anim-slide {
    opacity: 1;
    transform: translateX(0);
}

.project-hero.active .anim-fade {
    opacity: 1;
    transform: translateY(0);
}









.authority-section {
    padding: 80px 5%;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.authority-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stats-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
}

.badge {
    display: flex;
    flex-direction: column;
}

.badge strong {
    font-size: 2.5rem;
    color: #111;
}

.badge span {
    color: #76ff03;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #111;
    color: #fff;
}





.contact-section {
    padding: 120px 5%;
    background-color: #ffffff;
    color: #111;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info .tagline {
    color: #76ff03;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 3em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-desc {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.mail-link {
    font-size: 1.4em;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    border-bottom: 2px solid #76ff03;
    transition: 0.3s;
}

.mail-link:hover {
    color: #76ff03;
}

.social-links-contact {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    font-weight: 600;
}

.social-links-contact a {
    text-decoration: none;
    color: #888;
    transition: 0.3s;
}

.social-links-contact a:hover {
    color: #111;
}

/* --- FORMULAIRE --- */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Masque totalement le piège anti-bot */
.form-group-hp {
    display: none !important;
    visibility: hidden;
}content

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd; /* Style épuré : juste une ligne */
    font-size: 1em;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-bottom: 2px solid #111;
}

.btn-submit {
    margin-top: 20px;
    padding: 18px 40px;
    background-color: #111;
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #76ff03;
    color: #000;
    transform: translateY(-3px);
}

/* Footer */
.simple-footer {
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.8em;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 60px; }
    .contact-info h2 { font-size: 2.2em; }
}




.business-intro {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #111;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tagline {
    color: #76ff03;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.intro-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 60px;
    max-width: 900px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

/* Groupe Bouton + Stats YouTube */
.intro-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.youtube-micro-stats {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.yt-count {
    font-weight: 900;
    font-size: 1.3rem;
    color: #111;
    line-height: 1;
}

.yt-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
}

/* Visuel Vidéo */
.intro-visual .video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.intro-visual video {
    width: 100%;
    display: block;
}

.overlay-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: #76ff03;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

/* Mobile */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 50px; }
    .intro-cta-group { flex-direction: column; align-items: flex-start; }
    .youtube-micro-stats { border-left: none; border-top: 1px solid #ddd; padding: 15px 0 0 0; }
}


/* On renforce le poids visuel du nom */
.intro-text strong {
    color: #111;
    border-bottom: 2px solid #76ff03;
    font-weight: 800;
}

/* Le bouton devient plus personnel */
.btn-business {
    background: #111;
    color: #fff;
    padding: 18px 35px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-business:hover {
    transform: scale(1.05);
    background: #76ff03;
    color: #000;
}


.expertise-highlights {
    background: #111; /* Fond noir pour trancher */
    color: #fff;
    padding: 60px 5%;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #76ff03; /* Ton vert signature */
    line-height: 1;
}

.exp-content strong {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.exp-content p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .expertise-container { grid-template-columns: 1fr; gap: 30px; }
}

/* SECTION EXPERTISE (BUSINESS INTRO) */
.business-intro {
    padding: 100px 5%;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}













.about-brago {
    padding: 120px 5%;
    /* On utilise un dégradé radial très subtil au lieu d'un noir pur */
    background: radial-gradient(circle at 80% 20%, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Une ligne ultra fine pour séparer proprement */
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* La photo avec un bord net pour rester dans la DA */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 2px; /* Presque pas d'arrondi pour le côté pro */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Le texte avec un rappel de ton vert fluo en accent */
.about-text .highlight {
    color: #76ff03;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8); /* Un blanc légèrement cassé pour ne pas agresser l'oeil */
    margin-bottom: 20px;
}

/* Style de la photo */
.about-image .image-wrapper {
    position: relative;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: 0.5s ease;
}



.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #76ff03;
    color: #000;
    padding: 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
    transform: rotate(-5deg);
}

/* Typographie */
.about-text h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.about-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #76ff03;
}

.stat span {
    color: #888;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* Mobile */
@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-stats-mini { justify-content: center; }
}



















/* PAGE PRODUCTION */



.project-page {
    background-color: #fdfdfd;
    font-family: "Plus Jakarta Sans", sans-serif;
}


 

/* --- HEADER INITIAL (Transparent / Blanc) --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: transparent;
}

.left-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white; /* Texte en blanc sur la vidéo */
    font-weight: 500;
    transition: 0.3s;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.social-icons {
    display: flex;
    gap: 20px;
}

/* Force les icônes SVG en blanc quand c'est transparent */
.social-icons img, .logo img {
    width: 25px;
    height: auto;
    filter: brightness(0) invert(1); 
    transition: filter 0.4s ease;
}

.logo img {
    height: 45px;
}

/* --- ÉTAT SCROLLÉ (Fond blanc / Texte noir) --- */
.header-container.scrolled {
    background-color: white;
    padding: 15px 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container.scrolled .nav-links a {
    color: black;
}

.header-container.scrolled .separator {
    color: #ccc;
}

/* Remet les icônes en noir/couleur d'origine */
.header-container.scrolled .social-icons img,
.header-container.scrolled .logo img {
    filter: none;
}








.project-hero-detail {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.project-category {
    color: #76ff03;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.project-hero-detail h1 {
    font-size: 5em;
    font-weight: 900;
}

.project-meta {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 0.9em;
    opacity: 0.8;
}


.separator-project {
    padding: 100px 5% 0px;
    text-align: center;
}

.separator-project h2 {
    max-width: 800px;
    font-size: 0.8em;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

/* Brief */
.project-brief {
    padding: 100px 5%;
    text-align: center;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
}

.project-brief h2 {
    font-size: 0.8em;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.project-brief p {
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 100px 5%;
    background: #f4f4f4;
}

.section-title {
    text-align: center;
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 60px;
}

.process-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.process-item.reverse {
    flex-direction: row-reverse;
}

.process-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-img img {
    width: 100%;
    display: block;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.process-text p {
    color: #666;
    line-height: 1.6;
}

/* Resultat Final */
.final-result {
    padding: 100px 5%;
}

.result-video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: black;
}

.result-video-wrapper video {
    width: 100%;
    display: block;
}

/* Footer Projet */
.project-footer {
    padding: 120px 5%;
    background: #111;
    color: white;
    text-align: center;
}

.project-footer h3 {
    font-size: 2em;
    margin-bottom: 30px;
}



/* --- SECTION PARENTE --- */
.project-hero {
    position: relative;
    width: 100%;
    height: 85vh; /* Hauteur de la section */
    min-height: 500px;
    overflow: hidden; /* Empêche la vidéo de dépasser sur les côtés */
    display: flex;
    align-items: center; /* Centre le texte verticalement */
    background-color: #000;
}

/* --- LE CONTENEUR MÉDIA (L'ancre du fond) --- */
.hero-media {
    position: absolute;
    inset: 0; /* Équivalent à top:0, left:0, right:0, bottom:0 */
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit l'espace sans déformer */
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

/* --- LE TEXTE (Au premier plan) --- */
.project-content {
    position: relative;
    z-index: 10; /* Force le texte devant l'overlay et la vidéo */
    padding: 0 8%;
    max-width: 850px;
    color: #ffffff;
    pointer-events: auto; /* Assure que le bouton reste cliquable */
}

.project-title {
    font-size: clamp(3rem, 8vw, 6rem); /* Taille s'adapte à l'écran */
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.project-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-more {
    display: inline-block;
    padding: 18px 45px;
    border: 2px solid #76ff03;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #76ff03;
    color: #000;
}

/* --- ANIMATIONS --- */
.anim-slide {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out 0.4s;
}

.project-hero.active .anim-slide {
    opacity: 1;
    transform: translateX(0);
}

.project-hero.active .anim-fade {
    opacity: 1;
    transform: translateY(0);
}






.project-details-container {
    max-width: 1200px; /* Doit être la même valeur que ton bloc du dessus */
    margin: 0 auto;
    padding: 40px 20px;
}

/* La grille de ton image */
.project-header-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Texte large, Specs étroites */
    gap: 40px;
    margin-bottom: 40px; /* Espace avant la vidéo */
    align-items: start;
}

/* Le bloc vidéo */
.project-main-video {
    width: 100%; /* Prend toute la largeur du container parent */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .project-header-grid {
        grid-template-columns: 1fr;
    }
}


.video-wrapper {
    width: 100%;
    max-width: 1200px; /* Aligné sur ton conteneur de texte */
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    background: #000; /* Fond noir pendant le chargement */
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.bg-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9; /* Garde le format publicitaire */
    outline: none;
}

/* Personnalisation légère de la barre de contrôle (sur navigateurs modernes) */
.bg-video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0,0,0,0.7));
}




.project-specs {
    padding: 80px 5%;
    background-color: #ffffff; /* Fond clair pour trancher avec le hero noir */
    color: #111;
}

.specs-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Colonne Gauche */
.specs-description {
    flex: 2; /* Prend plus de place que la partie droite */
}

.specs-description h3 {
    font-size: 0.9rem;
    color: #76ff03; /* Ton vert fluo */
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 800;
}

.specs-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* La ligne verticale du croquis */
.specs-divider {
    width: 1px;
    height: 150px;
    background-color: #ddd;
}

/* Colonne Droite */
.specs-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column; /* Label au dessus de la valeur */
}

.detail-item .label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.detail-item .value {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.detail-item a{
    
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.detail-item a:hover{
    
    font-size: 1rem;
    font-weight: 600;
    color: #76ff03;
    transition: 0.3s;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .specs-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .specs-divider {
        width: 80px;
        height: 1px;
        margin: 0 auto;
    }
}

.case-study-header {
    background: #fff;
    padding: 120px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.case-study-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr auto 1fr; /* Vidéo | Trait | Texte */
    align-items: center;
    gap: 60px;
}

/* La Vidéo */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* Ton trait vertical noir */
.case-study-separator {
    width: 1px;
    height: 400px;
    background: #000;
    opacity: 0.15;
}

/* Le Texte */
.category-tag {
    color: #76ff03;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.case-study-details h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 10px 0 30px;
    line-height: 0.9;
}

.case-study-details h1 .sub-title {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: #888;
}

.description-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.lead-text {
    font-weight: 700;
    font-size: 1.3rem !important;
}

.highlight-box {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #76ff03;
}

/* Le bouton YouTube */
.yt-button {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.yt-button:hover {
    color: #76ff03;
    transform: translateX(10px);
}

/* Responsive */
@media (max-width: 1100px) {
    .case-study-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .case-study-separator {
        width: 100px;
        height: 1px;
        margin: 0 auto;
    }
    .yt-button { justify-content: center; }
}











.case-study-gallery {
    display: grid;
    /* On force 2 colonnes égales */
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    margin: 40px 0;
    padding: 10px ;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

/* La règle pour l'image du milieu dans ton dessin */
.full-width {
    /* Elle commence à la colonne 1 et s'étend sur 2 colonnes */
    grid-column: 1 / span 2; 
}

/* Pour la grande image, on peut augmenter un peu sa hauteur */
.full-width img {
    max-height: auto; /* Ajuste selon tes rendus */
    object-position: center;
}

/* Mobile : Tout le monde passe sur une seule colonne */
@media (max-width: 768px) {
    .case-study-gallery {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
}









.next-projects-section {
    background-color: #f5f5f5; /* Ton fond gris */
    padding: 80px 5%;
    border-top: 1px solid #eee;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 2 colonnes larges pour les projets, un trait, 1 colonne pour le contact */
    grid-template-columns: 2fr auto 1fr;
    gap: 60px;
    align-items: center;
}

/* Titres */
.footer-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Grille des 2 projets à gauche */
.footer-projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-project-card {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.footer-project-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.footer-project-card span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-project-card:hover {
    transform: translateY(-5px);
}

/* Trait vertical noir (Dessin image_dbdafd.png) */
.footer-separator {
    width: 1px;
    height: 150px;
    background-color: #000;
    opacity: 0.2;
}

/* Bloc Contact à droite */
.footer-contact-cta h3 {
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-contact-cta p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.btn-contact-footer {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-contact-footer:hover {
    background-color: #76ff03; /* Ton vert fluo */
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .container-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-separator {
        display: none;
    }
    .footer-projects-grid {
        margin-bottom: 40px;
    }
}






.case-study-showcase {
    /* Fond sombre dégradé pour donner du relief */
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    padding: 100px 0;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Titres stylisés */
.section-title {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section-title span {
    color: #76ff03; /* Ton émeraude */
}

/* Bloc Vidéo du haut */
.hero-render {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 20px;
}

.main-video-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
}

.main-video-container video {
    width: 100%;
    display: block;
}

/* Section Breakdown (Le croquis du bas) */
.breakdown-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Texte plus étroit que la vidéo */
    gap: 60px;
    align-items: center;
}

.divider {
    width: 50px;
    height: 4px;
    background: #76ff03;
    margin: 20px 0;
}

.breakdown-info p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1.1rem;
}

.breakdown-video-box {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #000;
}

.breakdown-video-box video {
    width: 100%;
    display: block;
    filter: brightness(0.9);
}

/* Responsive */
@media (max-width: 900px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
    .hero-render { margin-bottom: 60px; }
}








.vertical-showcase-section {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    padding: 100px 20px;
    color: #fff;
}

.showcase-block {
    max-width: 1000px; /* On réduit un peu pour que les vidéos verticales ne soient pas géantes */
    margin: 0 auto 120px;
}

.showcase-text {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title span {
    color: #76ff03; /* Ton vert Marshall */
}

.showcase-text p {
    color: #aaa;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Grille pour les 2 vidéos côte à côte */
.vertical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-container {
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.video-container video {
    width: 100%;
    /* Force le format vertical même si le fichier source varie un peu */
    aspect-ratio: 9 / 16; 
    object-fit: cover;
    display: block;
}

/* Style spécifique pour les vidéos de process (un peu plus sobres) */
.technical {
    border-color: rgba(118, 255, 3, 0.2);
}

/* Mobile : On les empile pour qu'elles restent visibles */
@media (max-width: 600px) {
    .vertical-grid {
        grid-template-columns: 1fr;
    }
}







.vertical-case-study {
    /* background: radial-gradient(circle at top left, #1a1a1a 0%, #050505 100%); */
    background: #1a1a1a;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.vertical-grid-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* Colonne gauche (vidéo), le trait, Colonne droite (infos/vfx) */
    grid-template-columns: 1.2fr auto 1fr;
    gap: 50px;
    align-items: start;
}

/* Titres */
.section-title, .side-title {
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title { font-size: 1.6rem; }
.side-title { font-size: 1.1rem; }

.section-title span, .side-title span {
    color: #76ff03; /* Ton vert émeraude */
}

/* Conteneur de base pour forcer le format 9:16 */
.vertical-video-box {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.vertical-video-box video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

/* Ligne de séparation verticale */
.vertical-line-divider {
    width: 1px;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
}

/* Colonne de droite */
.side-content-column {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Espace entre le texte du haut et le bloc VFX du bas */
}

.info-block p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.info-block p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Le lien textuel épuré */
.instagram-text-link {
    color: #76ff03; /* Ton vert émeraude */
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px; /* Petit espace après le texte classique */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Effet au survol : il s'éclaire légèrement et glisse vers la droite */
.instagram-text-link:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Vidéo de process en bas à droite */
.technical-vfx {
    border-color: rgba(118, 255, 3, 0.2);
    max-width: 75%; /* Légèrement plus petite pour respecter la hiérarchie du croquis */
}

/* Version Mobile / Tablette */
@media (max-width: 850px) {
    .vertical-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vertical-line-divider {
        display: none;
    }
    .technical-vfx {
        max-width: 100%;
    }
}







.section-separator {
    max-width: 1200px; /* Aligné sur la largeur de tes blocs de texte */
    margin: 0 auto;
    height: 1px;
    /* La ligne est visible au centre et disparaît sur les bords */
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
}









.pipeline-section {
    background: radial-gradient(circle at center, #161616 0%, #050505 100%);
    padding: 100px 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.pipeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Structure de chaque ligne */
.pipeline-step {
    display: grid;
    /* Média, Ligne centrale (ton croquis), Texte */
    grid-template-columns: 1.2fr 80px 1fr; 
    align-items: center;
    margin-bottom: 80px; /* Espace entre les étapes */
    position: relative;
}

/* Pour le dernier bloc, on réduit la marge du bas */
.pipeline-step:last-child {
    margin-bottom: 0;
}

/* Bloc Vidéo / Image */
.step-media {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.step-media video, .step-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* La ligne verticale séparatrice de ton croquis */
.step-pointer {
    height: 100%;
    min-height: 150px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    transition: background 0.4s ease;
}

/* Le petit trait horizontal ou point qui se connecte au texte au survol */
.step-pointer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}


/* Bloc Texte */
.step-text {
    padding: 20px 0;
    transition: transform 0.4s ease;
}

.step-text h3 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
}

.step-text p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Dynamisme au survol (Casse la répétition) --- */
.pipeline-step:hover .step-media {
    transform: scale(1.02);
    border-color: rgba(118, 255, 3, 0.3); /* Légère lueur émeraude */
}

.pipeline-step:hover .step-pointer {
    background: #76ff03; /* La ligne devient émeraude au survol */
}

.pipeline-step:hover .step-pointer::before {
    background: #76ff03;
    box-shadow: 0 0 10px #76ff03;
}

.pipeline-step:hover .step-text h3 {
    color: #76ff03;
}

/* --- Effet Alterné (Optionnel : un coup à gauche, un coup à droite) --- */
.pipeline-step:nth-child(even) {
    grid-template-columns: 1fr 80px 1.2fr; /* Inverse les proportions */
}
.pipeline-step:nth-child(even) .step-media {
    grid-column: 3; /* Envoie la vidéo à droite */
}
.pipeline-step:nth-child(even) .step-text {
    grid-column: 1; /* Envoie le texte à gauche */
    text-align: right; /* Aligne le texte à droite pour le style */
}

/* Responsive Mobile */
@media (max-width: 800px) {
    .pipeline-step, .pipeline-step:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    .step-pointer {
        display: none; /* On cache la ligne sur mobile pour gagner de la place */
    }
    .pipeline-step:nth-child(even) .step-media, 
    .pipeline-step:nth-child(even) .step-text {
        grid-column: unset;
        text-align: left;
    }
}


/* --- Effet Alterné Corrigé --- */
.pipeline-step:nth-child(even) {
    /* On s'assure que la structure des colonnes reste identique pour l'alignement */
    grid-template-columns: 1fr 80px 1.2fr; 
}

.pipeline-step:nth-child(even) .step-media {
    /* Force le média à aller dans la troisième colonne (à droite) */
    grid-column: 3;
    grid-row: 1; /* Force à rester sur la même ligne horizontale */
}

.pipeline-step:nth-child(even) .step-text {
    /* Force le texte à aller dans la première colonne (à gauche) */
    grid-column: 1;
    grid-row: 1; /* Force à rester sur la même ligne horizontale */
    text-align: right; /* Aligne le texte vers la droite pour border la ligne centrale */
}

.pipeline-step:nth-child(even) .step-pointer {
    /* Force la ligne centrale à rester au milieu */
    grid-column: 2;
    grid-row: 1;
}