/* --- VARIABLES & RESET --- */
:root {
    --black: #000000;
    --white: #ffffff;
    --red: #ff0000;
    --blue-night: #0d2b45;
    --orange: #ff953f;
    --soft-white: #f7f5f1;
    --gray: #f0f0f0;
    --font-main: 'Montserrat', sans-serif;
    /* Corps de texte lisible */
    --font-logo: 'Bebas Neue', 'Bebas Kai', sans-serif;
    /* Titres et Logo */
    --border-radius: 8px;
    --transition: 0.3s ease;
    /* Transition générale */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    /* S'assure que html prend toute la hauteur de la fenêtre */
    overflow-x: hidden;
}

body {
    background-color: var(--blue-night);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Empêche le scroll horizontal */
    position: relative;
    min-height: 100%;
    /* Prend toute la hauteur de html */
    display: flex;
    flex-direction: column;
}

/* --- BACKGROUND PHOTOS DECORATIFS --- */
.deco-square {
    display: none !important;
    position: fixed;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0.5px);
    opacity: 0.50;
    /* Opacité ajustée à 0.50 */
    z-index: -2;
    pointer-events: none;
}

/* Positions standardisées pour éviter le chevauchement */
/* 1. Top-Right (Dominant XL) */
.ds-pos-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -150px;
    max-width: 55vw;
    max-height: 55vw;
}

/* 2. Bottom-Left (Secondaire) */
.ds-pos-2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -120px;
    max-width: 45vw;
    max-height: 45vw;
}

/* 3. Middle-Left (Petit) */
.ds-pos-3 {
    width: 200px;
    height: 200px;
    top: calc(25% + 20px);
    /* Descendu de 20px */
    left: -100px;
    max-width: 25vw;
    max-height: 25vw;
}

/* 4. Bottom-Right (Petit) */
.ds-pos-4 {
    width: 250px;
    height: 250px;
    bottom: 5%;
    right: -50px;
    max-width: 30vw;
    max-height: 30vw;
}

/* 5. Center (Dominant L) */
.ds-pos-center {
    width: 450px;
    height: 450px;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);
    max-width: 55vw;
    max-height: 55vw;
}

/* 6. Top-Left (Opposé au menu) */
.ds-pos-tl {
    width: 350px;
    height: 350px;
    top: calc(15% + 20px);
    /* Descendu de 20px */
    left: -50px;
    max-width: 35vw;
    max-height: 35vw;
}

/* 7. Bottom-Center (Bas décalé) */
.ds-pos-bc {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: 40%;
    max-width: 40vw;
    max-height: 40vw;
}

/* 8. Middle-Right (Milieu Droit) */
.ds-pos-mr {
    width: 300px;
    height: 300px;
    top: 40%;
    right: -50px;
    max-width: 30vw;
    max-height: 30vw;
}

/* Ajustements Mobile */
@media (max-width: 768px) {
    .ds-pos-1 {
        top: -100px;
        right: -100px;
    }

    .ds-pos-2 {
        bottom: -50px;
        left: -50px;
    }

    .ds-pos-3,
    .ds-pos-4 {
        display: none;
    }

    /* Moins chargé sur mobile */
}

/* Indicateur de Scroll (Flèche bas) - Positionné en haut à droite */
.scroll-down-indicator {
    position: fixed;
    top: 100px;
    /* Positionné en haut, sous la navbar */
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    /* Fond ROUGE par défaut */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 900;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    /* Caché par défaut */
    pointer-events: none;
    /* Inactif par défaut */
}

.scroll-down-indicator.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-down-indicator:hover {
    background-color: var(--black);
    /* Fond NOIR au survol */
    transform: scale(1.1);
}

.scroll-down-indicator svg {
    fill: var(--white);
    width: 14px;
    height: 14px;
}

.sous-titre-h2 {
    font-size: 2.2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- TYPOGRAPHIE --- */
h1,
h2,
h3,
.nav-link,
.logo-text {
    font-family: var(--font-logo);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

strong {
    font-weight: 700;
}

em strong {
    font-style: italic;
    font-weight: 700;
}

@keyframes scintillate {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    50% {
        opacity: 0.7;
        filter: brightness(1.2);
    }
}

.scintillate-icon {
    display: inline-block;
    animation: scintillate 3s infinite ease-in-out;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- LOGO SCENO. --- */
.sceno-brand {
    font-family: var(--font-logo);
    font-weight: bold;
    font-size: 1.5rem;
    /* Ajustable */
    color: var(--white);
    /* Par défaut BLANC sur fond BLEU NUIT */
    display: inline-block;
    line-height: 1;
    transition: color 0.3s ease;
}

.sceno-brand-hero {
    font-family: var(--font-logo);
    font-size: 7rem;
    color: var(--white);
    /* BLANC sur fond BLEU NUIT */
    display: inline-block;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 0.9;
    position: relative;
}

.sceno-brand .dot {
    font-family: var(--font-logo) !important;
    /*margin-left: 0.1rem !important;*/
    /*   color: var(--white);*/
    font-size: 24px !important;

    /* Point en BLANC par défaut */
}

.sceno-brand-hero .dot {
    color: var(--white);
    /* Point hero en BLANC par défaut */
}

/* Base commune */
.sceno-brand .dot,
.sceno-brand-hero .dot {
    font-family: var(--font-logo);
    font-weight: bold;
    display: inline;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Correction point navbar uniquement */
.navbar .sceno-brand .dot {
    margin-left: -0.1em;
    font-weight: bold !important;
    color: var(--orange) !important;
}

.sceno-brand-footer .sceno-brand {
    font-size: 1rem;
    /* Taille plus petite pour le footer */
}

/* Exception pour la navbar : SCENO. reste blanc sur fond noir */
.navbar .sceno-brand,
.navbar .sceno-brand .dot {
    color: var(--white);
}

/* Helper pour texte rouge */
.text-red {
    color: var(--orange);
}

/* Classes pour l'animation d'apparition (Staggered Fade Up) */
.word-anim {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: pre;
    /* Conserver les espaces */
}

.word-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- SEPARATEUR POINTILLÉ --- */
.dotted-separator {
    width: 100%;
    /* Toute la largeur */
    height: 3px;
    margin: 0 0 30px 0;
    /* Remet la marge inférieure */
    /* Motif : 3px noir, 3px transparent */
    background-image: linear-gradient(to right, var(--black) 50%, transparent 50%);
    background-size: 6px 100%;
    background-repeat: repeat-x;
}

/* Animation pour le guide vertical supprimée */
.vertical-guide {
    display: none;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--blue-night);
    /* Fond Bleu Nuit Charte */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    /* Ombre harmonisée (Homepage style) */
    transition: background 0.3s ease;
    color: var(--white);
}

.nav-left {
    width: auto;
    min-width: 200px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    display: flex;
    align-items: baseline;
    /* Alignement au sol (baseline) */
    /* height: 100%; Supprimé pour permettre l'alignement baseline correct dans le flex parent */
}

.nav-center {
    display: flex;
    gap: 30px;
}

/* Animation "Glitch" aléatoire (plus calme, max opacité 50%) */
@keyframes randomGlitch {

    0%,
    15%,
    30%,
    45%,
    60%,
    75% {
        opacity: 0.5;
        transform: scale(1);
    }

    20% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.1;
        transform: scale(1.05);
    }

    70% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* Carré (marqueur) dynamique dans la navbar */
.nav-marker {
    position: absolute;
    top: 2px;
    left: 100px;
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    /* Carré en ROUGE */
    pointer-events: none;
    opacity: 1;
    z-index: 0;

    backface-visibility: hidden;
    transform: translateZ(0);

    transition:
        top 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        left 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        width 1.5s ease,
        height 1.5s ease;
}

.nav-marker.moving {
    opacity: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    /* Liens en BLANC par défaut */
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--orange);
    /* Texte en ROUGE au survol */
    transform: scale(1.2);
    opacity: 1;
}


.rec-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--red);
    /* Point REC ROUGE par défaut */
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    transition: background-color 0.3s ease;
}



.nav-right {
    width: 200px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    /* Icônes en BLANC par défaut */
    font-size: 1rem;
    text-decoration: none;
}

.nav-icon:hover {
    transform: scale(1.2);
    color: var(--orange);
    /* Icônes en ROUGE au survol */
}

/* --- ELEMENTS DE NAVIGATIONS AUTRES --- */

/* --- LAYOUT & SECTIONS --- */
main {
    margin-top: 100px;
    flex: 1;
    padding: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
    /* Nécessaire pour positionner les enfants absolument */
}

.section-block {
    margin-bottom: 40px;
    padding: 40px;
    /* Reduced padding from 60px */
    background: var(--white);
    color: var(--blue-night);
    /* Texte Bleu Nuit sur fond blanc */
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    /* Transition plus rapide et punchy */
    position: relative;
    will-change: transform;
    /* Optimisation pour l'animation */
}

/* Forcer la couleur pour les éléments internes du bloc blanc */
.section-block h1,
.section-block h2,
.section-block h3,
.section-block p,
.section-block strong,
.section-block .sceno-brand {
    color: var(--blue-night);
}

.section-block:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    /* transform removed - must be fixed */
    z-index: 10;
    /* Passe au-dessus */
}

/* --- ELEMENTS GRAPHIQUES (CARRÉS NOIRS) --- */
.square-dot {
    width: 8px;
    height: 8px;
    background-color: var(--black);
    /* Reste noir par défaut, ou rouge si demandé */
    display: inline-block;
}

.separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 10px;
}

/* Lines removed */
.separator-line::before,
.separator-line::after {
    display: none;
}

.chapter-picto {
    margin-right: 15px;
    /* Espace à droite */
    margin-bottom: 0;
    /* Plus de marge en bas */
    font-size: 2.5rem;
    display: inline-block;
    vertical-align: middle;
    /* Aligné verticalement */
    transition: transform 0.5s ease;
    min-width: 45px;
}

.section-block:hover .chapter-picto {
    transform: rotate(15deg);
    /* Rotation plus légère au survol */
}

.section-block h1,
.section-block h2 {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0 !important;
    /* Force l'alignement */
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    /* Demandé: 8px */
    font-weight: bold;
    transition: var(--transition);
    border: 1px solid var(--black);
    text-transform: uppercase;
    font-family: var(--font-logo);
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #333;
    /* Grisé au survol */
    border-color: #333;
    transform: translateY(-2px);
}

/* --- UTILS --- */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- FOOTER --- */
footer {
    background-color: var(--blue-night);
    color: var(--soft-white);
    padding: 10px;
    text-align: center;
    border-top: 1px solid var(--orange);
    position: relative;
    z-index: 100;
    margin-top: auto;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    /* Centrage vertical */
    justify-content: center;
    /* Centrage horizontal */
    min-height: 60px;
    text-transform: uppercase;
    font-family: 'Sora', sans-serif;
}

footer p {
    margin: 0;
    line-height: 1.2;
}

footer a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

footer .fab.fa-instagram {
    font-size: 1.2rem;
    margin-left: 0px;
    vertical-align: middle;
}


/* Logo Bebas */
.sceno-brand,
.sceno-brand-hero,
.sceno-brand-footer .sceno-brand {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}



/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    /* Fond ROUGE par défaut */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 2000;
    border: none;
    border-radius: 50%;
    /* Bouton rond */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Légère ombre */
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: var(--black);
    /* Fond NOIR au survol */
    transform: scale(1.1);
    /* Léger zoom */
}

.back-to-top i,
.scroll-down-indicator i {
    color: var(--white);
    font-size: 1.2rem;
}



/* --- CURSOR FOLLOWER --- */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--black);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    z-index: 9999;
    mix-blend-mode: difference;
    color: white;
    /* Pour que le mix-blend-mode marche bien */
}

/* --- SPECIFIC PAGE STYLES --- */
.two-cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 300px;
}

.tv-banner {
    display: flex;
    gap: 20px;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

/* LOGOS TV */
.tv-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: none;
    /* Couleur par défaut */
    transition: all 0.3s ease;
    margin: 0 15px;
    /* Espacement entre les logos */
}

.tv-logo:hover {
    filter: none;
    /* Couleur au survol */
    transform: scale(1.1);
    /* Zoom au survol */
    opacity: 1;
}



.tv-banner-container {
    overflow: hidden;
    width: 100%;
    margin-top: 0px;
    position: relative;
}

.tv-banner-track {
    display: flex;
    width: fit-content;
    animation: scrollBanner 40s linear infinite;
    /* Défilement horizontal */
}

/* Par défaut, on cache la version mobile */
.mobile-tv-banner {
    display: none;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Défilement de la moitié si doublé */
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        /* Maintenir en ligne pour garder le logo centré */
        height: 70px;
        /* Hauteur cohérente avec l'autre media query */
        padding: 0 20px;
    }

    .nav-center {
        flex-wrap: wrap;
        justify-content: center;
        margin: 15px 0;
    }

    .nav-right {
        justify-content: center;
        width: 100%;
    }

    main {
        margin-top: 180px;
        /* Ajustement pour navbar mobile */
        padding: 20px;
    }
}

/* Style et animation pour les numéros de phrases */
.numbered-phrase {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    /* Taille plus petite */
    font-weight: bold;
    /* Gras */
    color: var(--orange);
    /* Rouge */
    vertical-align: top;
    /* Alignement en haut du texte */
    margin-right: 10px;
    /* Espace avec le texte */
    display: inline-block;
    /* Pour le positionnement */
    line-height: 1;
    /* Ne perturbe pas l'interligne du paragraphe */
    /* animation: pulse-slow 2s infinite ease-in-out; */
    /* Pulsation supprimée */
}

/* --- SERVICE CARD (Mini Section Block) --- */
.service-card {
    background: var(--orange);
    /* Fond ROUGE */
    color: var(--white);
    /* Texte BLANC */
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Animation pour les titres des cartes de service (fixe mais vivant) */
@keyframes title-pulse-border {

    0%,
    100% {
        opacity: 1;
        border-bottom-color: rgba(255, 255, 255, 1);
    }

    50% {
        opacity: 0.85;
        border-bottom-color: rgba(255, 255, 255, 0.3);
    }
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    min-height: 60px;
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
    line-height: 1.1;
    animation: title-pulse-border 3s infinite ease-in-out;
    /* Animation fixe mais vivante */
}

/* Classe pour l'icône "Broadcast" (Style ondes rouges, comme les téléphones) */
.broadcast-icon {
    display: inline-flex;
    /* Pour centrer l'icône FA */
    align-items: center;
    justify-content: center;
    width: 60px;
    /* Taille fixe */
    height: 60px;
    border-radius: 50%;
    /* Cercle */
    background-color: var(--orange);
    color: var(--white);
    /* Icône en blanc */
    position: relative;
    z-index: 1;
    margin-right: 15px;
    /* Espacement standard */
    vertical-align: middle;
}

/* Ondes pour .broadcast-icon (copie adaptée de .format-icon) */
.broadcast-icon::before,
.broadcast-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    /* Colle aux bords */
    border: 2px solid var(--orange);
    border-radius: 50%;
    /* Cercle */
    z-index: -1;
    opacity: 0;
    animation: broadcast-wave 2s infinite cubic-bezier(0, 0.55, 0.45, 1);
}

.broadcast-icon::after {
    animation-delay: 1s;
}

.number-box {
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 50%;
    /* Cercle */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: var(--font-logo);
    position: absolute;
    top: -15px;
    left: 15px;
    z-index: 1;
    font-size: 1rem;
}

/* --- FORMATS & DIFFUSION GRID --- */
.formats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.format-column {
    flex: 1;
    min-width: 300px;
    background: #ededed;
    border-radius: var(--border-radius);
    padding: 30px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    /* Ajout */
    flex-direction: column;
    /* Ajout */
}

.format-column:hover {
    border-color: var(--gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.format-header {
    text-align: center;
    margin-bottom: 0px;
    /* Élimine la marge inférieure */
    /* border-bottom: 2px solid var(--gray); */
    /* Supprimé */
    padding-bottom: 0px;
    /* Élimine le padding inférieur */
    flex: 0 0 auto;
    /* Ne pas rétrécir */
}

/* Animation d'émission (Broadcast/Onde) */
@keyframes broadcast-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
        border-width: 2px;
    }

    100% {
        transform: scale(2);
        /* L'onde s'agrandit vers le spectateur */
        opacity: 0;
        border-width: 0px;
    }
}

/* Icons for formats */
.format-icon {
    display: block;
    margin: 0 auto 15px auto;
    border: 3px solid var(--orange);
    /* Bordure rouge */
    background-color: var(--orange);
    /* Remplissage rouge */
    transition: background-color 0.3s ease;
    position: relative;
    /* Pour positionner les ondes */
    z-index: 1;
}

/* Les ondes d'émission */
.format-icon::before,
.format-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    /* Colle aux bords de l'icône */
    border: 2px solid var(--orange);
    border-radius: 4px;
    z-index: -1;
    /* Derrière l'icône principale */
    opacity: 0;
    animation: broadcast-wave 2s infinite cubic-bezier(0, 0.55, 0.45, 1);
}

.format-icon::after {
    animation-delay: 1s;
    /* Décalage pour un flux continu */
}

.format-icon-9-16 {
    width: 30px;
    height: 53px;
    /* Ratio 9:16 approx */
    border-radius: 4px;
}

.format-icon-16-9 {
    width: 53px;
    height: 30px;
    /* Ratio 16:9 approx */
    border-radius: 4px;
    margin-top: 12px;
    /* Centrage vertical par rapport à l'icône 9:16 */
    margin-bottom: 26px !important;
    /* Marge bas ajustée pour compenser (12+30+26 = 68px total, vs 53+15=68px) */
}

.format-column:hover .format-icon {
    background-color: var(--orange);
    border-color: var(--orange);
}

.format-title {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: var(--blue-night);
    margin-bottom: 10px;
    min-height: 1.2em;
    /* Sécurité pour l'alignement */
}

.format-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0;
    min-height: 90px;
    /* Hauteur fixe suffisante pour 3-4 lignes de texte */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Aligne le texte en HAUT de la boîte */
}

.format-desc-line1,
.format-desc-line2 {
    display: block;
    /* Force le passage à la ligne */
}

.format-desc-line1 {
    font-weight: bold;
    /* Pour "Le standard..." */
    margin-bottom: 5px;
    /* Petit espace entre les deux lignes */
    color: var(--black);
}

.platform-list {
    list-style: none;
    padding: 0;
}

.platform-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-left 0.2s ease;
    cursor: default;
    /* Animation d'entrée */
    opacity: 0;
    /* Caché au départ */
    animation: fadeInUpRow 0.5s ease forwards;
    border-left: 0px solid var(--orange);
    /* Prêt pour le hover */
}

/* Effet de cascade pour l'apparition des lignes */
.platform-item:nth-child(1) {
    animation-delay: 0.2s;
}

.platform-item:nth-child(2) {
    animation-delay: 0.3s;
}

.platform-item:nth-child(3) {
    animation-delay: 0.4s;
}

.platform-item:nth-child(4) {
    animation-delay: 0.5s;
}

.platform-item:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes fadeInUpRow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--orange);
    /* Barre rouge "vivante" */
}

.platform-icon-wrap {
    width: 30px;
    text-align: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--orange);
}

.platform-item:hover .platform-icon-wrap {
    color: var(--orange);
    animation: bounce 1s;
}

.platform-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue-night);
    display: block;
}

.platform-detail {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
    display: block;
}

/* --- OFFRE BOXES (New) --- */
.offers-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 0px;
    /* Réduit de 30px à 0px */
}

.offer-box {
    color: var(--blue-night);
    flex: 1;
    min-width: calc(33.33% - 20px);
    /* Ajusté pour 3 colonnes avec gap de 30px */
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
}

.offer-box:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.offer-title {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--black);
    padding-bottom: 10px;
    text-align: center;
}

@keyframes label-flash {

    0%,
    45% {
        background: var(--orange);
        color: var(--white);
        box-shadow: inset 0 0 0 2px var(--orange);
    }

    50%,
    95% {
        background: var(--white);
        color: var(--orange);
        box-shadow: inset 0 0 0 2px var(--orange);
    }
}

.offer-label {
    background: var(--orange);
    color: var(--white);
    padding: 6px 10px 1px 10px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    top: -2px;
    animation: label-flash 4s infinite step-end;
}

.offer-title .sceno-brand,
.offer-title .sceno-brand .dot {
    color: var(--black);
}

.offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.offer-list li::before {
    content: "■";
    /* Carré */
    color: var(--orange);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: 2px;
}

.offer-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
    font-weight: bold;
    text-align: right;
    font-size: 1.1rem;
    color: var(--orange);
}

.offer-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.offer-option-item {
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;

    /* Animation d'entrée */
    opacity: 0;
    animation: fadeInUpRow 0.6s ease forwards;
}

/* Délais en cascade pour l'apparition */
.offer-option-item:nth-child(1) {
    animation-delay: 0.1s;
}

.offer-option-item:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-option-item:nth-child(3) {
    animation-delay: 0.3s;
}

.offer-option-item:nth-child(4) {
    animation-delay: 0.4s;
}

.offer-option-item:nth-child(5) {
    animation-delay: 0.5s;
}

.offer-option-item:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    /* Ombre rouge brillante */
}

/* --- DESIGN CONTACT / CARTES DE VISITE --- */

/* Animation d'apparition en cascade */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-element {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Grille pour les cartes */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Style des cartes */
.contact-card {
    background: var(--blue-night);
    /* Fond Bleu Nuit */
    padding: 20px 25px; /* Padding réduit pour moins de hauteur */
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    color: var(--white);
    /* Texte par défaut en Blanc */
    display: flex;
    flex-direction: column;
    height: auto; /* Hauteur auto pour s'adapter au contenu */
    align-items: flex-start;
    /* Alignement gauche */
    text-align: left;
    /* Alignement texte gauche */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Suppression du trait noir ::before */

.contact-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border-color: transparent; /* Pas de bordure orange */
}

.contact-card h3 {
    margin: 0 0 10px 0;
    font-size: 2rem;
    font-family: var(--font-logo);
    letter-spacing: 1px;
    color: var(--white);
    /* Nom en Blanc */
}

.contact-card .role {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    /* Rôle en Orange */
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.contact-card a {
    transition: color 0.3s ease;
    font-size: 1.1rem !important;
    color: var(--white) !important;
    font-weight: bold;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--orange) !important;
}

.contact-card:hover a {
    color: var(--white) !important;
}
/* Exception pour le hover direct sur le lien */
.contact-card a:hover {
    color: var(--orange) !important;
}

/* Footer Contact Spécifique */
.contact-footer-text {
    padding-top: 20px;
    margin-top: 10px;
}

.insta-picto-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--orange);
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 1.2rem;
    margin: 0 5px;
    vertical-align: middle;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.insta-picto-inline:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* Désactivation de l'effet hover sur sections spécifiques */
.section-block.no-hover-effect:hover {
    transform: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Reste l'ombre initiale */
    z-index: 1;
}

.section-block.no-hover-effect:hover .chapter-picto {
    transform: none;
    /* Pas de rotation du picto */
}

/* --- MODIFICATIONS PHOTOS BACKGROUND --- */

/* Gros carrés décoratifs : définis plus haut */

/* Bandeau vertical supprimé */

/* Ajustement pour les phrases numérotées dans les blocs rouges */
.service-card .numbered-phrase {
    color: var(--white);
}

/* --- ANIMATION LOGO HERO : BIG BANG INVERSÉ (Supprimée) --- */

/* --- MENU MOBILE (OVERLAY) --- */

/* Bouton Burger */
.burger-menu {
    display: none;
    /* Caché sur desktop */
    cursor: pointer;
    z-index: 2000;
    position: fixed;
    top: 25px;
    right: 30px;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    /* Blanc car navbar rouge */
    transition: all 0.3s ease;
}

/* Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue-night);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    color: var(--white);
    font-family: var(--font-logo);
    font-size: 2.5rem;
    text-decoration: none;
    margin: 15px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Animation des liens */
.mobile-nav-overlay.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(6) {
    transition-delay: 0.6s;
}

/* Animation Burger Croisé */
.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- GALERIE ALEATOIRE (Page References) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 8 colonnes strictes */
    gap: 10px;
    width: 100%;
    margin-top: 30px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1; /* Carré parfait */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    filter: grayscale(100%);
    cursor: pointer;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-3px) scale(1.1);
    filter: grayscale(0%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative; /* Pour passer au-dessus */
}

/* --- COPIE NAVBAR HOMEPAGE (DESKTOP) --- */
@media (min-width: 901px) {
    .navbar {
        background-color: var(--blue-night) !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
        align-items: center !important;
    }

    .navbar .sceno-brand,
    .navbar .sceno-brand .dot,
    .navbar .nav-link,
    .navbar .nav-icon {
        color: #ffffff !important;
    }

    .navbar .sceno-brand {
        letter-spacing: 1px !important;
    }

    .navbar .nav-left {
        display: flex !important;
        align-items: baseline !important;
        height: auto !important;
    }

    .navbar .nav-left span {
        color: var(--orange) !important;
        opacity: 1 !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
        font-family: var(--font-main);
        font-size: 0.7rem;
        margin-left: 5px;
        letter-spacing: 1px;
    }

    .navbar .nav-link {
        font-family: 'Bebas Neue', sans-serif !important;
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
        text-transform: uppercase;
        position: relative;
        z-index: 10 !important;
    }

    .nav-marker {
        background-color: var(--orange) !important;
        width: 22px !important;
        height: 22px !important;
        top: 48% !important;
        transform: translateY(-50%) !important;
        z-index: 0 !important;
        pointer-events: none !important;
        border-radius: 0 !important;
        mix-blend-mode: normal !important;
    }

    .navbar .nav-center,
    .navbar .nav-left,
    .navbar .nav-right {
        position: relative !important;
        z-index: 10 !important;
    }
}

/* Ajustement spécifique Desktop pour la page Record */
@media (min-width: 901px) {
    .record-page main {
        margin-top: 0 !important;
        padding-top: 140px !important;
    }
    
    #formules, #options, #cgv {
        scroll-margin-top: 125px;
    }
}

/* --- SOUS-MENU ANCRES (Desktop & Base) --- */
.sub-menu-anchors {
    position: fixed;
    top: 80px; /* Hauteur Navbar Desktop */
    left: 0;
    width: 100%;
    background-color: rgba(13, 43, 69, 0.85); /* Blue Night avec transparence */
    backdrop-filter: blur(5px);
    z-index: 950; /* Sous navbar (1000) mais au-dessus du contenu */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    /* box-shadow removed */
    transition: top 0.3s ease;
}

.sub-menu-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-logo);
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 5px 10px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.sub-menu-link:hover {
    color: var(--orange);
}

/* RESPONSIVE GENERAL */
@media (max-width: 900px) {

    .nav-center,
    .nav-right,
    .nav-marker,
    .scroll-down-indicator {
        display: none !important;
        /* Cacher menu desktop et flèche de scroll bas */
    }

    .burger-menu {
        display: flex;
        /* Afficher burger */
    }

    .navbar {
        padding: 0 20px;
        height: 70px;
    }
    
    /* Sous-menu ancres (Mobile) */
    .sub-menu-anchors {
        top: 70px;
        padding: 5px 10px;
        gap: 15px;
        font-size: 0.9rem;
        flex-wrap: nowrap; /* Tenter de garder sur une ligne si possible */
        overflow-x: auto; /* Scroll horizontal si ça dépasse vraiment */
        justify-content: flex-start; /* Aligner à gauche pour le scroll */
        -webkit-overflow-scrolling: touch;
    }
    
    .sub-menu-link {
        font-size: 0.9rem;
        margin: 0 2px;
        white-space: nowrap;
    }

    .sceno-brand-hero {
        font-size: 4rem;
    }

    h1,
    #hero-title {
        font-size: 2.2rem !important;
    }
    
    .sous-titre-h2 {
        font-size: 1.8rem !important;
    }

    main {
        margin-top: 100px; /* Moins d'espace sous la navbar */
        padding: 20px; /* Marges latérales réduites */
    }

    /* Ajustement spécifique pour la page Record (présence du sous-menu) */
    .record-page main {
        margin-top: 0 !important;
        padding-top: 120px !important;
    }
    
    .record-page #formules, 
    .record-page #options, 
    .record-page #cgv {
        scroll-margin-top: 120px;
    }

    .record-page main > .section-block:first-of-type {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }

    .section-block {
        padding: 25px; /* Padding interne réduit */
    }

    /* --- REGLAGE FINAL BOUTONS NAVIGATION (MOBILE) --- */
    .scroll-down-indicator,
    .back-to-top {
        width: 35px !important;
        height: 35px !important;
        right: 15px !important;
    }
    
    .back-to-top {
        bottom: 80px !important;
    }
    
    /* --- GALERIE RESPONSIVE --- */
    /* Homepage : 2x2 (4 images) */
    #home-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    #home-gallery .gallery-item:nth-child(n+5) {
        display: none;
    }

    /* Autres galeries (Références) : 2 colonnes (Plus grand) */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Colonnes en ligne deviennent empilées */
    .contact-grid,
    .formats-grid,
    .two-cols,
    .services-grid,
    .offers-container {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 30px; /* Espace vertical entre les blocs */
    }

    .contact-card {
        padding: 20px; /* Padding ajusté pour mobile */
    }
    
    .contact-card h3 {
        font-size: 1.5rem; /* Titre un peu plus petit sur mobile */
    }

    .offer-box,
    .format-column,
    .service-card {
        width: 100%;
        min-width: 0;
    }
    
    /* --- BANNIERE TV MOBILE (Double Ligne) --- */
    .desktop-tv-banner {
        display: none !important;
    }

    .mobile-tv-banner {
        display: flex !important; /* Active le bloc mobile */
        flex-direction: column;
        gap: 15px; /* Espace entre les 2 lignes */
        overflow: hidden;
        margin-top: 20px;
        width: 100%;
    }

    .mobile-tv-track {
        display: flex;
        width: fit-content;
        /* Animation définie plus bas */
    }

    .track-left {
        animation: scrollLeft 20s linear infinite;
    }

    .track-right {
        animation: scrollRight 20s linear infinite;
    }

    .mobile-tv-banner .tv-logo {
        height: 35px; /* Taille ajustée pour mobile */
        margin: 0 15px;
        flex-shrink: 0;
    }

    /* Animations Défilement Mobile */
    @keyframes scrollLeft {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes scrollRight {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    /* Masquer gros éléments décoratifs sur mobile si gênant */
    .deco-square {
        opacity: 0.15;
    }
    
    .ds-pos-1, .ds-pos-2, .ds-pos-3, .ds-pos-4, .ds-pos-center {
        transform: scale(0.7); /* Réduire la taille des taches */
    }
}

@media (max-width: 500px) {
    /* Mobile : 2 colonnes pour la galerie (plus lisible) */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    h1 {
        font-size: 1.8rem !important;
    }
    
    /* Ajustement titre hero homepage mobile */
    #hero-title {
        font-size: 1.8rem !important;
    }

    .sceno-brand-hero {
        font-size: 3rem;
    }

    /* Ajustement fin pour le footer */
    footer {
        font-size: 0.6rem;
        padding: 15px 5px;
    }
    
    /* Navigation mobile overlays text adjustment */
    .mobile-nav-link {
        font-size: 2rem;
    }
    
    /* Optimisation sous-menu sur très petits écrans */
    .sub-menu-anchors {
        justify-content: center; /* Centrer si possible */
        gap: 10px;
    }
}

/* --- CONTACT RESPONSIVE LAYOUT --- */
/* Mobile Only Transformation */
@media (max-width: 900px) {
    .contact-main-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-label {
        display: block;
        margin-bottom: 15px;
        font-weight: normal;
        font-family: var(--font-main);
        font-size: 1.1rem;
        text-transform: none;
        color: var(--blue-night);
    }
    
    .contact-links-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .contact-sep {
        display: none; /* Cache le séparateur | */
    }
    
    .contact-link-mail,
    .contact-link-tel {
        display: block;
        margin-left: 0 !important;
        margin-bottom: 25px;
        font-weight: normal;
        position: relative;
        padding-top: 0;         /* On enlève l'espace au-dessus */
        padding-left: 50px;     /* On crée de l'espace à gauche pour l'icône */
        line-height: 1.5;       /* Hauteur de ligne confortable */
    }

    /* Icônes alignées à gauche et centrées verticalement */
    .contact-link-mail::before {
        content: "\f0e0"; 
        font-family: "Font Awesome 6 Free"; 
        font-weight: 400; 
        font-size: 1.8rem;      /* Taille ajustée */
        color: var(--blue-night);
        position: absolute;
        top: 50%;               /* Centrage vertical */
        left: 0;
        transform: translateY(-50%); /* Correction centrage */
    }
    
    .contact-link-tel::before {
        content: "\f095"; 
        font-family: "Font Awesome 6 Free";
        font-weight: 900; 
        font-size: 1.8rem;      /* Taille ajustée */
        color: var(--blue-night);
        position: absolute;
        top: 50%;               /* Centrage vertical */
        left: 0;
        transform: translateY(-50%); /* Correction centrage */
    }
}

/* --- REGLAGE FINAL BOUTONS NAVIGATION --- */
.scroll-down-indicator,
.back-to-top {
    position: fixed;
    width: 45px;
    height: 45px;
    background-color: #00152d !important;
    color: var(--white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer;
    z-index: 3000 !important;
    /* Très haut pour éviter tout chevauchement */
    border-radius: 0 !important;
    /* Rectangle strict charte */
    transition: all 0.3s ease;
    padding: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-down-indicator:hover,
.back-to-top:hover {
    background-color: var(--orange) !important;
    transform: scale(1.1);
}

.scroll-down-indicator i,
.back-to-top i {
    font-size: 1.2rem !important;
    color: var(--white) !important;
    margin: 0 !important;
    padding: 0 !important;
}

