/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');
:root {
    /* Palette inspirée du logo Solution Saturne */
    --primary: #4AA82A;   /* vert Saturne */
    --light: #F6F8FC;     /* fond clair */
    --dark: #0B1220;      /* bleu nuit */
    /* Override Bootstrap primary (remplace l'orange du template) */
    --bs-primary: var(--primary);
    --bs-primary-rgb: 74, 168, 42;

    /* Évite toute teinte orange/jaune Bootstrap */
    --bs-warning: var(--primary);
    --bs-warning-rgb: 74, 168, 42;
    --bs-orange: var(--primary);
    --bs-yellow: var(--primary);
}

/* Bootstrap plafonne .container-xxl à ~1320px : sur un grand écran ça laisse
   de larges bandes vides à gauche/droite du site. On désactive ce plafond
   partout (le site utilise .container-xxl pour des fonds pleine largeur,
   avec un .container interne qui garde, lui, une largeur de lecture
   confortable) — correctif global, valable sur toutes les pages. */
.container-xxl {
    max-width: 100% !important;
}

/* Sécurité: si un composant utilise warning/orange */
.text-warning,
.link-warning,
.bg-warning,
.border-warning,
.btn-warning,
.badge.bg-warning {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-warning:hover,
.btn-warning:focus {
    background-color: #3f9424 !important;
    border-color: #3f9424 !important;
}

.ff-secondary {
    font-family: 'Outfit', sans-serif;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

/* Retour en haut : carré fixe ; masqué en display:none, visible en flex (évite conflits opacity/visibility) */
.back-to-top {
    position: fixed !important;
    right: 45px;
    bottom: 45px;
    z-index: 1080 !important;
    box-sizing: border-box;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    left: auto !important;
    display: none !important;
    align-items: center;
    justify-content: center;
}

.back-to-top.back-to-top--visible {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.pia-loading-overlay {
    background: #0B1220 !important;
}
.pia-loader {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(74, 168, 42, 0.18);
    border-top-color: #4AA82A;
    animation: pia-spin 0.75s linear infinite;
}
@keyframes pia-spin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .pia-loader {
        animation-duration: 1.6s;
    }
}


/*** Button ***/
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

/*** Typo (plus impactante) ***/
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--catalog-filter-sticky-top, 120px);
}

:focus-visible {
    outline: 3px solid var(--primary) !important;
    outline-offset: 3px !important;
}

body{
    font-family: "Outfit", sans-serif !important;
    background: #020617;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Outfit", sans-serif !important;
    letter-spacing: -0.02em;
}
.display-3{ font-weight: 700 !important; }
.fw-bold{ font-weight: 700 !important; }
.fw-medium{ font-weight: 600 !important; }
.btn{ font-weight: 700; letter-spacing: .06em; }

/* Supprime le fond blanc global du template */
.container-xxl.bg-white{ background: transparent !important; }

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
/* Nav en capsule flottante : items groupés dans une pilule vitrée, actif mis en évidence dans une pilule pleine */
.navbar-dark .navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 0;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14.5px;
    color: #fff !important;
    text-transform: none;
    font-weight: 500;
    outline: none;
    transition: background .25s ease, color .25s ease;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 8px 18px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link.active {
    background: var(--primary);
    color: #fff !important;
}
.navbar-dark .navbar-nav .nav-link.active:hover{
    background: var(--primary);
}

.navbar-dark .navbar-brand img {
    max-height: 110px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 88px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    /* Pas de capsule sur mobile : liste verticale simple, plus lisible dans le menu déroulant */
    .navbar-dark .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        background: none;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        padding: 8px 0 0;
        gap: 2px;
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 12px 6px;
        margin-left: 0;
        border-radius: 8px;
    }

    .navbar-dark .navbar-nav .saturne-lang-switch {
        justify-content: center;
        margin-top: 6px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }
    .navbar-dark .navbar-nav .saturne-lang-switch .nav-link {
        text-align: center;
    }

    .navbar-dark .navbar-brand img {
        max-height: 96px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    /* Style "Rural" : photo plein écran + overlay */
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.65)),
        url(../img/tf.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header.hero-header--home {
    background-image:
        radial-gradient(120% 70% at 15% 0%, rgba(74, 168, 42, .14), transparent 55%),
        linear-gradient(180deg, rgba(6, 10, 20, .90) 0%, rgba(6, 10, 20, .72) 35%, rgba(6, 10, 20, .68) 60%, rgba(6, 10, 20, .96) 100%),
        url("../img/hero-import-export.jpg") !important;
    background-position: center 40% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Hero (accueil) — plein cadre, titre XXL, CTA pilule + lien, stats en pied de hero */
.hero-content-wrap{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: min(680px, 78vh);
    padding-block: 88px 0;
    gap: 40px;
}

/* Cartes véhicules flottantes (tirées au hasard au chargement) — même design
   que les cartes catalogue (.mcard), format "app store" (grande photo, badge,
   coche, titre/sous-titre/description, prix + bouton pilule).
   Règle : la carte n'existe QUE si elle peut être placée à droite du texte
   sans jamais le chevaucher. Si la place manque, elle disparaît — pas de
   repli "en dessous du texte".
   - < 1240px : pas assez de place à droite du texte (colonne plafonnée à
     780px) → aucune carte, sur téléphone comme sur tablette.
   - 1240px à 1499px : une seule carte, positionnée en absolu à droite.
   - >= 1500px : deux cartes, positionnées en absolu à droite. */
.hero-float-cards{
    display: none;
}
.hero-float-card.mcard{
    display: block;
    width: 240px;
    max-width: 78vw;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 26px 54px rgba(0,0,0,.40);
    opacity: 0;
    animation: heroCardIn .8s cubic-bezier(.16,1,.3,1) forwards;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-float-card.mcard:nth-child(1){ animation-delay: .1s; }
.hero-float-card.mcard:nth-child(2){ animation-delay: .32s; display: none; }
.hero-float-card.mcard:hover{
    transform: translateY(-4px);
    box-shadow: 0 32px 62px rgba(0,0,0,.46);
}
.hero-float-card.mcard .mcard-media{ aspect-ratio: 1 / 1; }
.hero-float-card.mcard .mcard-media img{ animation: none !important; }
.hero-float-card.mcard .mcard-desc{ -webkit-line-clamp: 1; }
.hero-float-card.mcard .mcard-footer{ flex-wrap: wrap; row-gap: .5rem; }
@keyframes heroCardIn{
    from{ opacity: 0; transform: translateY(28px) scale(.96); }
    to{ opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce){
    .hero-float-card.mcard{ animation: none; opacity: 1; }
}
@media (min-width: 1240px) and (max-width: 1499.98px){
    .hero-float-cards{
        display: flex;
        position: absolute;
        right: 4%;
        bottom: 172px;
        justify-content: flex-end;
        gap: 16px;
        pointer-events: none;
    }
    .hero-float-card.mcard{
        width: 240px;
        max-width: none;
        pointer-events: auto;
    }
}
@media (min-width: 1500px){
    .hero-float-cards{
        display: flex;
        position: absolute;
        right: 4%;
        bottom: 172px;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 18px;
        pointer-events: none;
    }
    .hero-float-card.mcard{
        width: 270px;
        max-width: none;
        pointer-events: auto;
    }
    .hero-float-card.mcard:nth-child(2){ display: block; width: 220px; }
    .hero-float-card.mcard:nth-child(2) .mcard-title{ font-size: .92rem; }
    .hero-float-card.mcard:nth-child(2) .mcard-subtitle{ font-size: .74rem; }
}

/* Hero "Catalogue Véhicules" — showroom photo + overlay, façon site de location premium */
.vehicules-hero{
    position: relative;
    padding-block: 120px 90px;
    background:
        linear-gradient(100deg, rgba(9,15,28,.92) 30%, rgba(9,15,28,.55) 75%),
        url('../img/vehicules-hero.jpg');
    background-size: cover;
    background-position: center 35%;
}
.vehicules-hero__breadcrumb{
    background: none;
    padding: 0;
    margin-bottom: 32px;
}
.vehicules-hero__breadcrumb .breadcrumb-item,
.vehicules-hero__breadcrumb .breadcrumb-item a{
    color: rgba(255,255,255,.6);
    font-size: 12.5px;
    letter-spacing: .04em;
}
.vehicules-hero__breadcrumb .breadcrumb-item.active{ color: #fff; }
.vehicules-hero__tag{
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.vehicules-hero__title{
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    text-wrap: balance;
}
.vehicules-hero__lede{
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.6;
    max-width: 52ch;
    margin-bottom: 32px;
}
.vehicules-hero__actions{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
@media (max-width: 767.98px){
    .vehicules-hero{ padding-block: 90px 70px; }
    .vehicules-hero:has(.hero-bottom-stats){ padding-block: 90px 32px; }
}

/* Bandeau défilant — villes desservies (import/export) */
.city-ticker{
    background: var(--dark);
    overflow: hidden;
    display: flex;
    padding-block: 18px;
}
.city-ticker-track{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: city-ticker-scroll 36s linear infinite;
}
.city-ticker-track span{
    color: rgba(255,255,255,.82);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .01em;
    white-space: nowrap;
    padding-inline: 22px;
    position: relative;
}
.city-ticker-track span::after{
    content: "•";
    position: absolute;
    right: -3px;
    color: var(--primary);
}
@keyframes city-ticker-scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce){
    .city-ticker-track{ animation: none; }
}
.hero-content{
    max-width: 780px;
}
.hero-title{
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 5.4vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 24px;
}
.hero-lede{
    font-size: 17px;
    line-height: 1.65;
    max-width: 56ch;
    margin-bottom: 32px;
    opacity: .92;
}
.hero-actions{
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-btn-primary{
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    padding: 8px 8px 8px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.hero-btn-primary:hover{
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.hero-btn-primary-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.hero-btn-link{
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.55);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-btn-link:hover{
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-bottom-stats{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.22);
}
.hero-bottom-stat b{
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.hero-bottom-stat span{
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

/* Badge de confiance — avatars superposés + note + repère chiffré */
.hero-trust-badge{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 460px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 14px 34px 14px 18px;
}
.hero-trust-avatars{ display: flex; flex-shrink: 0; }
.hero-trust-avatars span{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    border: 2px solid var(--dark);
    margin-left: -12px;
}
.hero-trust-avatars span:first-child{ margin-left: 0; }
.hero-trust-avatars span:nth-child(1){ background: var(--primary); }
.hero-trust-avatars span:nth-child(2){ background: var(--primary-deep, #357A20); }
.hero-trust-avatars span:nth-child(3){ background: #24344F; }
.hero-trust-avatars span:nth-child(4){ background: #0F1A2C; }
.hero-trust-stars{ color: #FBBF24; font-size: 12px; letter-spacing: 2px; margin-bottom: 4px; }
.hero-trust-copy strong{
    display: block;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}
.hero-trust-copy span{
    display: block;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    margin-top: 3px;
    white-space: nowrap;
}
@media (max-width: 991.98px){
    .hero-trust-badge{ display: none; }
}
@media (max-width: 767.98px){
    .hero-content-wrap{
        min-height: auto;
        padding-block: 40px 0;
        gap: 32px;
    }
    .hero-bottom-stats{ gap: 18px 32px; }
}

@media (max-width: 420px){
    .hero-actions{ gap: 10px; flex-wrap: nowrap; }
    .hero-btn-primary{
        gap: 8px;
        font-size: 12.5px;
        padding: 6px 6px 6px 16px;
        white-space: nowrap;
    }
    .hero-btn-primary-icon{ width: 30px; height: 30px; font-size: 11px; }
    .hero-btn-link{
        font-size: 12.5px;
        padding: 12px 16px;
        white-space: nowrap;
    }
    .hero-bottom-stats{ flex-wrap: nowrap; gap: 8px; }
    .hero-bottom-stat{ flex: 1 1 0; min-width: 0; }
    .hero-bottom-stat b{ font-size: 22px; }
    .hero-bottom-stat span{ font-size: 11px; line-height: 1.25; display: block; }
    .vehicules-hero__actions{ flex-wrap: nowrap; gap: 10px; }
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

/* Hero: image d'accueil fixe + légèrement plus grande */
.hero-header img.hero-visual {
    animation: none !important;
    transform: none !important;
    width: min(680px, 100%);
}

/* Titre hero : toujours une seule ligne (pas de césure entre SOLUTION / SATURNE) */
.hero-brand-title {
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    white-space: nowrap;
    font-size: clamp(20px, 4.8vw + 0.75rem, 92px);
}

/* Sous-titre hero : une seule ligne, taille adaptée à la largeur */
.hero-tagline {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: clamp(0.06em, 0.18vw + 0.05em, 0.2em);
    white-space: nowrap;
    font-size: clamp(7.5px, 1.05vw + 0.42rem, 12px);
    line-height: 1.25;
}

/*** Saturne Pattern Background (hors hero) ***/
.saturne-main{
    position: relative;
    background: #020617;
}
.saturne-main::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    background: #020617;
    background-image:
        linear-gradient(to right, rgba(71,85,105,0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(71,85,105,0.3) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(139,92,246,0.15) 0%, transparent 70%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
}
.saturne-main > *{ position:relative; z-index:1; }

/*** Page À propos ***/
.saturne-main .about-page section {
    scroll-margin-top: 96px;
}
.saturne-main .about-page-toc {
    background: rgba(11, 18, 32, 0.92);
    border-color: rgba(74, 168, 42, 0.18) !important;
    backdrop-filter: blur(8px);
}
.saturne-main .about-page-toc .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    white-space: nowrap;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
}
.saturne-main .about-page-toc .nav-link:hover,
.saturne-main .about-page-toc .nav-link:focus {
    color: #fff !important;
    background: rgba(74, 168, 42, 0.2);
}
.saturne-main .about-page-figure {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(74, 168, 42, 0.22);
    background: rgba(11, 18, 32, 0.65);
}
.saturne-main .about-page-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.saturne-main .about-page-value {
    border-radius: 14px;
    border: 1px solid rgba(74, 168, 42, 0.2) !important;
    background: rgba(11, 18, 32, 0.55) !important;
    height: 100%;
    padding: 1.25rem 1.1rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.saturne-main .about-page-value:hover {
    border-color: rgba(74, 168, 42, 0.42) !important;
    transform: translateY(-3px);
}
.saturne-main .about-page-cta {
    border-radius: 18px;
    border: 1px solid rgba(74, 168, 42, 0.35) !important;
    background: linear-gradient(135deg, rgba(74, 168, 42, 0.22), rgba(11, 18, 32, 0.92));
}
.saturne-main .about-page-portrait {
    --bs-aspect-ratio: 125%;
}

.saturne-main .about-page-figure .ratio img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.saturne-main .home-section-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.saturne-main .home-chiffres-side {
    --bs-aspect-ratio: 118%;
}

/* En chiffres — évite le chevauchement en responsive */
.saturne-main .home-stats .home-stat-card {
    gap: 0.35rem;
}
.saturne-main .home-stats .home-stat-card .display-5 {
    line-height: 1;
    letter-spacing: -0.02em;
}
.saturne-main .home-stats .home-stat-card span {
    display: block;
    line-height: 1.25;
    text-wrap: balance;
    max-width: 16ch;
}
@media (max-width: 575.98px) {
    .saturne-main .home-stats .home-stat-card {
        padding: 1rem !important;
    }
    .saturne-main .home-stats .home-stat-card .display-5 {
        font-size: 2.1rem;
    }
    .saturne-main .home-stats .home-stat-card span {
        font-size: 0.72rem;
        max-width: 14ch;
    }
}

/* Timeline verticale « zigzag » — Comment ça marche */
/* Section "Comment ça marche" : fond d'origine conservé (quadrillage global), cartes verre dépoli */
.home-timeline-section{
    position: relative;
}
.saturne-main .home-timeline {
    position: relative;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0 0;
}
.saturne-main .home-timeline-track {
    position: absolute;
    top: 0.75rem;
    bottom: 0.75rem;
    left: 1.5rem;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(
        180deg,
        rgba(74, 168, 42, 0.15),
        rgba(74, 168, 42, 0.85) 15%,
        rgba(74, 168, 42, 0.85) 85%,
        rgba(74, 168, 42, 0.15)
    );
}
.saturne-main .home-timeline-list {
    position: relative;
    z-index: 1;
}
.saturne-main .home-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem 1.25rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-left: 0;
}
.saturne-main .home-timeline-node {
    grid-column: 1;
    grid-row: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: var(--primary);
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 2px rgba(74, 168, 42, 0.35), 0 8px 20px rgba(0,0,0,.35);
    justify-self: center;
    z-index: 2;
}
.saturne-main .home-timeline-card {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.saturne-main .home-timeline-card:hover{
    transform: translateY(-3px);
    border-color: rgba(74,168,42,.4);
    background: rgba(255,255,255,.06);
}
.home-timeline-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(74,168,42,.16);
    color: var(--primary);
    font-size: 15px;
    margin-bottom: .8rem;
}
@media (min-width: 768px){
    .home-timeline-item--right .home-timeline-card{ text-align: right; }
}

/* Visuel "Pourquoi nous choisir" : photo + badge flottant, calée sur la
   hauteur du bloc de texte voisin (row en align-items-stretch). */
.why-us-row{ display: flex; flex-wrap: wrap; }
.why-us-figure{
    position: relative;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.why-us-figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 991.98px){
    .why-us-figure{ height: 300px; box-shadow: 0 14px 30px rgba(0,0,0,.30); }
}
@media (max-width: 480px){
    .why-us-figure{ height: 260px; border-radius: 14px; }
    .why-us-badge{
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }
    .why-us-badge-icon{ width: 32px; height: 32px; font-size: 13px; }
    .why-us-badge strong{ font-size: 13px; }
    .why-us-badge span{ font-size: 11px; }
}
.why-us-badge{
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 16px 34px rgba(0,0,0,.30);
}
.why-us-badge-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
}
.why-us-badge strong{
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--dark);
}
.why-us-badge span{
    display: block;
    color: var(--muted, #64748B);
    font-size: 12.5px;
    margin-top: 2px;
}
@media (min-width: 768px) {
    .saturne-main .home-timeline {
        max-width: 100%;
        padding: 0.5rem 0 0;
    }
    .saturne-main .home-timeline-track {
        left: 50%;
        transform: translateX(-50%);
        top: 0.5rem;
        bottom: 0.5rem;
    }
    .saturne-main .home-timeline-item {
        grid-template-columns: 1fr minmax(3.5rem, 5%) 1fr;
        gap: 0 1.5rem;
        margin-bottom: 2.5rem;
    }
    .saturne-main .home-timeline-node {
        grid-column: 2;
        justify-self: center;
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.15rem;
    }
    .saturne-main .home-timeline-item--right .home-timeline-card {
        grid-column: 1;
        text-align: end;
        justify-self: end;
        max-width: 100%;
        width: min(100%, 22rem);
    }
    .saturne-main .home-timeline-item--left .home-timeline-card {
        grid-column: 3;
        text-align: start;
        justify-self: start;
        max-width: 100%;
        width: min(100%, 22rem);
    }
}

.saturne-main #homeFaq .accordion-item {
    border: 1px solid rgba(74, 168, 42, 0.2) !important;
}
.saturne-main #homeFaq .accordion-button {
    background: rgba(11, 18, 32, 0.85) !important;
    color: #fff !important;
    box-shadow: none !important;
}
.saturne-main #homeFaq .accordion-button:not(.collapsed) {
    background: rgba(74, 168, 42, 0.2) !important;
}
.saturne-main #homeFaq .accordion-button::after {
    filter: brightness(0) invert(1);
}
.saturne-main #homeFaq .accordion-body {
    background: rgba(11, 18, 32, 0.55);
}

.saturne-main .about-page-partner {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(11, 18, 32, 0.6) !important;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Lisibilité sur fond sombre */
.saturne-main,
.saturne-main h1,
.saturne-main h2,
.saturne-main h3,
.saturne-main h4,
.saturne-main h5,
.saturne-main h6,
.saturne-main .text-dark{
    color:#fff !important;
}
.saturne-main .text-muted{ color: rgba(255,255,255,.72) !important; }
.saturne-main .text-body{ color: rgba(255,255,255,.75) !important; }
.saturne-main .border{ border-color: rgba(74,168,42,.22) !important; }
.saturne-main .bg-light{
    background: rgba(11, 18, 32, .55) !important;
}

/* Cards/blocks en mode sombre */
.saturne-main .card,
.saturne-main .service-item,
.saturne-main .team-item,
.saturne-main .testimonial-item{
    background: rgba(11, 18, 32, .78) !important;
    border: 1px solid rgba(74,168,42,.18) !important;
}
.saturne-main .team-item {
    overflow: visible !important;
}
.saturne-main .testimonial-stars {
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}
.saturne-main .testimonial-stars .fa.fa-star {
    color: #fbbf24;
}
.saturne-main .testimonial-stars .far.fa-star {
    color: rgba(255, 255, 255, 0.32);
}
.saturne-main .nav-pills .nav-link{
    color: rgba(255,255,255,.82) !important;
}
.saturne-main .nav-pills .nav-link.active{
    background: var(--primary) !important;
    color: #fff !important;
}
.saturne-main .form-control,
.saturne-main .form-select{
    background: rgba(11, 18, 32, .75) !important;
    border-color: rgba(74,168,42,.22) !important;
    color: #fff !important;
}
.saturne-main .form-floating > label{ color: rgba(255,255,255,.72) !important; }
.saturne-main .form-control::placeholder{ color: rgba(255,255,255,.6) !important; }
/* form-floating : ne pas afficher le placeholder en plus du label (chevauchement / flou sur mobile WebKit) */
.saturne-main .form-floating > .form-control::placeholder,
.saturne-main .form-floating > textarea.form-control::placeholder {
    color: transparent !important;
    opacity: 0 !important;
}

/*** Espacements (moins de “blanc” entre sections) ***/
.saturne-main .container-xxl.py-5,
.saturne-main .container-xxl.pt-5,
.saturne-main .container-xxl.pb-3,
.saturne-main .container-xxl.pt-5.pb-3,
.saturne-main .container-xxl.py-5.px-0{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.saturne-main .mb-5{ margin-bottom: 1.5rem !important; }
.saturne-main .mt-5{ margin-top: 1.5rem !important; }
.saturne-main .pt-5{ padding-top: 1.5rem !important; }
.saturne-main .pb-5{ padding-bottom: 1.5rem !important; }

/* Accueil : espace accru entre la grille services et la section À propos */
.saturne-main .container-xxl.py-5.home-after-services {
    padding-top: clamp(3.25rem, 2.25rem + 3.5vw, 6.5rem) !important;
}

/* Évite l'espace au-dessus du footer */
.footer.mt-5{ margin-top: 0 !important; }
/* Catalogue : le pied de page suit directement les résultats, pas besoin
   du padding-top complet (3rem) prévu pour les pages avec du contenu clair
   juste au-dessus. */
main.catalog-light-v1 + footer.site-footer.pt-5{ padding-top: .75rem !important; }

/*** Product Cards ***/
.product-card .card-img-top {
    height: 118px;
    object-fit: cover;
}

/* Cartes Catalogue (look pro, fond Saturne) */
.saturne-main .product-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(74, 168, 42, 0.22) !important;
    background: linear-gradient(
        165deg,
        rgba(22, 32, 52, 0.96),
        rgba(11, 18, 32, 0.92)
    ) !important;
    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.saturne-main .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 168, 42, 0.45) !important;
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(74, 168, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.saturne-main .product-card .product-card-media {
    position: relative;
    overflow: hidden;
    background: #0b1220;
}
.saturne-main .product-card .product-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(2, 6, 23, 0.72) 100%);
    pointer-events: none;
}
.saturne-main .product-card .card-img-top {
    height: 138px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.saturne-main .product-card:hover .card-img-top {
    transform: scale(1.05);
}
.saturne-main .product-card .card-body {
    padding: 0.5rem 0.75rem 0.55rem;
}
.saturne-main .product-card .card-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 0.86rem;
    color: #fff !important;
    margin-bottom: 0.22rem;
    line-height: 1.25;
}
.saturne-main .product-card p.card-text.mb-4 {
    margin-bottom: 0.45rem !important;
    font-size: 0.7rem;
    line-height: 1.32;
}
.saturne-main .product-card .badge {
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 0.58rem;
    padding: 0.28em 0.55em;
}
.saturne-main .product-card-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}
.saturne-main .product-card-price-old {
    font-variant-numeric: tabular-nums;
    font-size: clamp(0.6rem, 1.35vw, 0.7rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    letter-spacing: -0.01em;
}
.saturne-main .product-card-price {
    font-variant-numeric: tabular-nums;
    font-size: clamp(0.72rem, 1.65vw, 0.88rem);
    font-weight: 800;
    line-height: 1.15;
    color: #e8ffe0;
    letter-spacing: -0.02em;
}
.saturne-main .product-card-actions {
    gap: 0.5rem !important;
}
.saturne-main .product-card-actions .btn {
    font-weight: 600;
    font-size: 0.66rem;
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
}
.saturne-main .product-card-actions .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.22) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}
.saturne-main .product-card-actions .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.38) !important;
    color: #fff !important;
}
/* Ligne actions : icône WhatsApp seule + bouton Détails (pas de panier) */
.saturne-main .product-card-actions .product-card-btn-wa {
    width: 2.2rem;
    min-width: 2.2rem;
    min-height: 2.2rem;
    padding: 0 !important;
    border-radius: 9px !important;
    background: #25d366 !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    font-size: 1rem;
    line-height: 1;
}
.saturne-main .product-card-actions .product-card-btn-wa:hover {
    background: #1ebe57 !important;
    color: #fff !important;
    filter: brightness(1.06);
}
.saturne-main .product-card-actions .product-card-btn-wa:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.45);
}
.saturne-main .product-card-actions .product-card-btn-detail {
    letter-spacing: 0.07em;
    font-weight: 700;
    font-size: 0.62rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.saturne-main .product-card .d-flex.mb-3 {
    margin-bottom: 0.38rem !important;
}


/*** Fiche produit v2 — theme clair, inspire de la maquette validee ***/
.saturne-main .pf2{
    background: #F6F8FC;
    position: relative;
    z-index: 1;
}
/* Cette page n'a pas de photo de hero derriere la nav : la nav doit rester
   opaque et dans le flux normal (pas de superposition transparente). */
@media (min-width: 992px){
    .navbar-dark.pf2-navbar-solid{
        position: static !important;
        background: var(--dark) !important;
    }
}
.pf2-crumb-wrap{ margin-bottom: 1rem; }
.pf2-crumb{ background: transparent; padding: 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.pf2-crumb .breadcrumb-item,
.pf2-crumb .breadcrumb-item a{ color: rgba(16,24,38,.55) !important; }
.pf2-crumb .breadcrumb-item.active{ color: #101826 !important; font-weight: 600; }
.pf2-crumb .breadcrumb-item + .breadcrumb-item::before{ color: rgba(16,24,38,.35); }
.pf2-shell,
.pf2-shell h1, .pf2-shell h2, .pf2-shell h3, .pf2-shell h4, .pf2-shell h5, .pf2-shell h6,
.pf2-shell p, .pf2-shell span, .pf2-shell div{ color: #101826; }
.pf2-eyebrow{
    display:inline-flex; align-items:center; gap:.4rem;
    font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em;
    color:#3F9424 !important; margin-bottom:.5rem;
}

/* ---- Hero produit ---- */
.pf2-hero{
    display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,3vw,2.75rem);
    background:#fff; border:1px solid #E5E9F2; border-radius:20px;
    padding: clamp(1.25rem,2.5vw,2rem);
    box-shadow: 0 10px 30px rgba(11,18,32,.06);
}
@media (max-width: 900px){ .pf2-hero{ grid-template-columns: 1fr; } }

.pf2-gallery-main{
    border-radius:14px; overflow:hidden; background:#EEF1F6; border:1px solid #E5E9F2;
}
.pf2-gallery-main img{ width:100%; aspect-ratio: 4/3; object-fit:cover; }
.pf2-thumbs .col-3 .card{ border-radius:10px; overflow:hidden; cursor:pointer; border:2px solid transparent !important; background:#fff; }
.pf2-thumbs .col-3 .card img{ aspect-ratio:1/1; object-fit:cover; }
.pf2-thumbs .col-3 .card.border-primary{ border-color:#4AA82A !important; }

@media (min-width: 992px){
    .pf2-buy{ position: sticky; top: 96px; align-self: flex-start; }
}
.pf2-badges .badge.bg-light{ background:#EEF1F6 !important; color:#445066 !important; border-color:#E5E9F2 !important; }
.saturne-main .pf2-title{ font-size: clamp(2rem, 1.3rem + 2.2vw, 2.75rem); font-weight:800; line-height:1.1; letter-spacing:-0.02em; color:#101826 !important; }
.pf2-subtitle{ color: rgba(16,24,38,.62) !important; font-size:.94rem; }

.pf2-price-row{ display:flex; align-items:baseline; gap:.65rem; flex-wrap:wrap; margin-bottom:.2rem; }
.pf2-price{ font-size:clamp(1.55rem,1.2rem+1.2vw,1.9rem); font-weight:800; letter-spacing:-0.02em; font-variant-numeric:tabular-nums; color:#101826 !important; }
.pf2-price-old{ color: rgba(16,24,38,.42) !important; text-decoration:line-through; font-size:.95rem; font-variant-numeric:tabular-nums; }
.pf2-save{ font-size:.74rem; }
.pf2-price-note{ color: rgba(16,24,38,.55) !important; font-size:.8rem; margin-bottom:1.2rem; min-height:1em; }

.pf2-cta{ display:grid; gap:.6rem; margin-bottom:1.2rem; }
.pf2-cta .btn{ border-radius:10px; font-weight:700; }
.pf2-cta .btn-primary{ background:var(--primary, #4AA82A) !important; border-color:var(--primary, #4AA82A) !important; color:#fff !important; }
.pf2-cta .btn-primary:hover{ background:#3F9424 !important; border-color:#3F9424 !important; }
.pf2-btn-wa{ background:#25D366 !important; border-color:#25D366 !important; color:#fff !important; }
.pf2-btn-wa:hover{ filter:brightness(1.05); }

.pf2-meta{
    display:flex; flex-wrap:wrap; gap:.85rem 1.4rem;
    border-top:1px solid #E5E9F2; padding-top:1.05rem;
}
.pf2-meta-item{ display:flex; align-items:flex-start; gap:.55rem; font-size:.82rem; color: rgba(16,24,38,.62) !important; flex:1 1 160px; }
.pf2-meta-item i{ color:#3F9424 !important; margin-top:.15rem; }
.pf2-meta-item b{ display:block; color:#101826 !important; font-weight:700; font-size:.85rem; }

/* ---- Pourquoi ce produit ---- */
.pf2-why{ background:#fff; border-top:1px solid #E5E9F2; border-bottom:1px solid #E5E9F2; border-radius:16px; padding: clamp(1.75rem,3vw,2.5rem) clamp(1rem,3vw,2rem); margin-top: clamp(2rem,4vw,3rem); }
.pf2-why-head{ text-align:center; margin-bottom:1.75rem; }
.pf2-why-head .pf2-eyebrow{ justify-content:center; display:flex; }
.saturne-main .pf2-why-head h2{ font-size:clamp(1.2rem,1rem+0.8vw,1.5rem); font-weight:800; margin:.25rem 0 0; color:#101826 !important; }
.pf2-why-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:1.5rem; }
@media (max-width:760px){ .pf2-why-grid{ grid-template-columns:1fr; } }
.pf2-why-card{ text-align:center; padding: 0 .5rem; }
.pf2-why-icon{
    width:52px; height:52px; border-radius:14px; background:#EAF6E2;
    display:flex; align-items:center; justify-content:center; margin:0 auto .8rem;
    color:#3F9424 !important; font-size:1.3rem;
}
.saturne-main .pf2-why-card h3{ font-size:.98rem; font-weight:700; margin:0 0 .3rem; color:#101826 !important; }
.pf2-why-card p{ font-size:.83rem; color: rgba(16,24,38,.6) !important; margin:0; line-height:1.5; }

/* ---- Description + fiche technique ---- */
.pf2-info{ display:grid; grid-template-columns: 1.3fr .9fr; gap:1.5rem; margin-top: clamp(1.75rem,3vw,2.5rem); }
@media (max-width:900px){ .pf2-info{ grid-template-columns:1fr; } }
.pf2-info.pf2-info--solo{ grid-template-columns: 1fr; }
.pf2-card{ background:#fff; border:1px solid #E5E9F2; border-radius:14px; padding:1.4rem; }
.saturne-main .pf2-card h2{ font-size:1rem; font-weight:800; margin:0 0 .75rem; color:#101826 !important; }
.pf2-card p{ color: rgba(16,24,38,.65) !important; font-size:.9rem; line-height:1.65; }
.pf2-spec-row{ display:flex; justify-content:space-between; padding:.55rem 0; border-bottom:1px solid #E5E9F2; font-size:.85rem; }
.pf2-spec-row:last-child{ border-bottom:0; }
.pf2-spec-row span:first-child{ color: rgba(16,24,38,.6) !important; }
.pf2-spec-row span:last-child{ font-weight:700; color:#101826 !important; }

/* ---- FAQ ---- */
.pf2-faq{ margin-top: clamp(1.75rem,3vw,2.5rem); }
.saturne-main .pf2-faq h2{ font-size:clamp(1.1rem,1rem+0.5vw,1.3rem); font-weight:800; margin:0 0 1rem; color:#101826 !important; }
.pf2-faq-accordion{ background:#fff; border:1px solid #E5E9F2; border-radius:14px; overflow:hidden; }
.pf2-faq-accordion .accordion-item{ background:#fff !important; border:0 !important; border-bottom:1px solid #E5E9F2 !important; color:#101826 !important; }
.pf2-faq-accordion .accordion-item:last-child{ border-bottom:0 !important; }
.pf2-faq-accordion .accordion-button{ background:#fff !important; color:#101826 !important; box-shadow:none !important; font-weight:600; font-size:.92rem; }
.pf2-faq-accordion .accordion-button:not(.collapsed){ background:#EAF6E2 !important; color:#101826 !important; }
.pf2-faq-accordion .accordion-body{ color: rgba(16,24,38,.65) !important; font-size:.88rem; }

/* ---- Produits similaires ---- */
.pf2-related{ margin-top: clamp(2rem,4vw,3rem); }
.pf2-related-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:1.1rem; }
.saturne-main .pf2-related-head h2{ font-size:clamp(1.1rem,1rem+0.5vw,1.3rem); font-weight:800; margin:0; color:#101826 !important; }
.pf2-related-head a{ font-size:.84rem; font-weight:700; color:#3F9424 !important; }

/*** Quick request (hero) ***/
.quick-request{
    max-width: 300px;
    margin-left: auto;
    margin-right: 0;
    background: rgba(16, 27, 48, .82) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .4);
}
.quick-request .form-control,
.quick-request .form-select{
    background: rgba(8, 13, 24, .6) !important;
    border-color: rgba(255, 255, 255, .14) !important;
    color: #fff !important;
}
.quick-request .btn[href*="whatsapp.com"] {
    background: transparent !important;
    color: #25d366 !important;
    border-color: rgba(37, 211, 102, 0.35) !important;
}
.quick-request .btn[href*="whatsapp.com"]:hover {
    background: rgba(37, 211, 102, .1) !important;
    color: #25d366 !important;
    border-color: rgba(37, 211, 102, 0.55) !important;
}
@media (max-width: 991.98px){
    .quick-request{
        max-width: 360px;
        margin: 18px 0 0 auto;
    }
}

/* Améliorations responsive pour l'accueil */
@media (max-width: 768px) {
    /* Hero section */
    .hero-header {
        padding: 4rem 0 2rem !important;
    }
    
    .hero-header h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-header .display-3 {
        font-size: 2.5rem !important;
    }
    
    /* Corriger le débordement du texte sur mobile */
    .hero-brand-title {
        white-space: normal !important;
        font-size: clamp(24px, 5vw, 48px) !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }
    
    .hero-tagline {
        white-space: nowrap !important;
        font-size: clamp(9px, 2.2vw, 12px) !important;
        line-height: 1.4 !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    /* Sur mobile, autoriser les retours à la ligne */
    @media (max-width: 768px) {
        .hero-tagline {
            white-space: normal !important;
            overflow-wrap: break-word !important;
            word-wrap: break-word !important;
            font-size: clamp(8px, 2.2vw, 12px) !important;
            line-height: 1.3 !important;
            letter-spacing: 0.02em !important;
        }
        
        .hero-tagline::after {
            content: "\A";
            white-space: pre;
        }
    }
    
    /* Hero row - stack vertically on mobile */
    .hero-row {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .hero-left,
    .hero-right {
        margin-bottom: 0 !important;
        width: 100% !important;
    }
    
    /* Demande rapide : visible sous le bloc texte (plus de masquage mobile) */
    .hero-right {
        display: block !important;
    }
    .quick-request {
        display: block !important;
    }
    
    .hero-left {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 0 !important;
    }
    
    /* Assombrir et mettre en gras les textes sur tablette */
    .hero-tagline {
        color: rgba(255, 255, 255, 0.6) !important;
        font-weight: 700 !important;
    }
    
    .hero-left p {
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 600 !important;
    }
    
    /* Navigation */
    .navbar-brand img {
        height: 80px !important;
    }
    
    .navbar-collapse {
        background: rgba(2, 6, 23, 0.98);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        margin-top: 0.5rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .dropdown-menu {
        background: transparent !important;
        border: none !important;
        text-align: center;
    }
    
    /* Proposition de valeur */
    .home-after-services {
        padding: 3rem 0 !important;
    }
    
    .home-after-services h2 {
        font-size: 1.5rem !important;
    }
    
    .home-after-services h5 {
        font-size: 1rem !important;
    }
    
    /* Section services */
    .service-item {
        margin-bottom: 1.5rem;
    }
    
    .service-item .fa-3x {
        font-size: 2rem !important;
    }
    
    .service-item h5 {
        font-size: 1rem !important;
    }
    
    .service-item p {
        font-size: 0.85rem !important;
    }
    
    /* Timeline */
    .home-timeline {
        padding: 2rem 0 !important;
    }
    
    .home-timeline-item {
        margin-bottom: 2rem;
        grid-template-columns: 2.5rem 1fr !important;
        gap: 0.75rem 1rem !important;
    }
    
    .home-timeline-node {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .home-timeline-card {
        padding: 0.75rem !important;
    }
    
    .home-timeline-card h5 {
        font-size: 0.95rem !important;
    }
    
    .home-timeline-card p {
        font-size: 0.8rem !important;
    }
    
    /* Stats */
    .home-stats {
        padding: 3rem 0 !important;
    }
    
    .home-stat-card {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    /* Categories grid */
    .about-page-figure {
        margin-bottom: 1rem;
    }
    
    /* Formulaire devis */
    .video {
        min-height: 250px !important;
        height: 250px !important;
        display: block !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .video + .bg-dark {
        padding: 2rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1rem !important;
    }
    
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer p,
    .footer a {
        font-size: 0.9rem !important;
    }
    
    .footer .btn-social {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }
    
    .footer-bottom-one-line {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-menu {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem 1rem !important;
    }
    
    .footer-menu a {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    /* Hero section mobile */
    .hero-header {
        padding: 3rem 0 1.5rem !important;
    }
    
    .hero-header h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-header .display-3 {
        font-size: 2rem !important;
    }
    
    .hero-header p {
        font-size: 0.9rem !important;
    }
    
    /* Corriger le texte sur très petits écrans */
    .hero-brand-title {
        white-space: normal !important;
        font-size: clamp(20px, 6vw, 32px) !important;
        line-height: 1.1 !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-tagline {
        white-space: normal !important;
        font-size: clamp(9px, 3vw, 12px) !important;
        line-height: 1.4 !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
    }
    
    /* Boutons hero - adapter pour mobile */
    .hero-left .d-flex {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-left .btn {
        width: 100% !important;
        max-width: 280px !important;
        font-size: 0.9rem !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    .hero-left {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 0 !important;
    }
    
    /* Assombrir et mettre en gras les textes sur mobile */
    .hero-tagline {
        color: rgba(255, 255, 255, 0.6) !important;
        font-weight: 700 !important;
        font-size: clamp(7px, 2.5vw, 10px) !important;
        line-height: 1.2 !important;
        letter-spacing: 0.01em !important;
    }
    
    /* Footer compact sur mobile */
    .footer {
        padding-bottom: 1rem !important;
    }
    
    .footer-bottom-one-line {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .footer-menu {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.75rem !important;
    }
    
    .hero-left p {
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 600 !important;
    }
    
    /* Navigation mobile */
    .navbar-brand img {
        height: 60px !important;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    /* Buttons mobile */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    a.back-to-top.btn.btn-lg {
        padding: 0 !important;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        right: 20px !important;
        bottom: 20px !important;
    }
    
    /* Sections mobile */
    .container-xxl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Coque + bandeau : pas de gouttière (nav + hero en pleine largeur, évite bandes #020617) */
    body > .container-xxl.bg-white.p-0,
    body > .container-xxl.bg-white.p-0 > .container-xxl.position-relative.p-0,
    body > .container-xxl.bg-white.p-0 .hero-header {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Cards mobile */
    .service-item,
    .testimonial-item {
        margin-bottom: 1rem;
    }
    
    .service-item h4,
    .testimonial-item h4 {
        font-size: 1rem !important;
    }
    
    /* Formulaire mobile */
    .form-floating {
        margin-bottom: 0.5rem;
    }
    
    .form-control,
    .form-select {
        font-size: 0.9rem !important;
    }
    
    /* Partenaires mobile */
    .partner img {
        max-width: 120px !important;
        height: auto !important;
    }
    
    /* Image formulaire devis mobile */
    .video {
        min-height: 200px !important;
        height: 200px !important;
        display: block !important;
        background-size: cover !important;
        background-position: center !important;
        margin-bottom: 1rem !important;
    }
    
    /* Layout formulaire devis mobile */
    .row.g-0 .col-md-6:first-child {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .row.g-0 .col-md-6:last-child {
        width: 100% !important;
    }
}

/* Améliorations responsive pour les autres pages */
@media (max-width: 768px) {
    /* Page catalogue (menu.html) */
    .catalog-page {
        padding: 2rem 0 !important;
    }
    
    .catalog-toolbar {
        text-align: center !important;
    }
    
    .catalog-toolbar h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .catalog-toolbar-meta {
        font-size: 0.85rem !important;
    }
    
    .saturne-main .catalog-search-panel__main {
        padding: 0.75rem 0 !important;
    }
    
    .catalog-field__label {
        font-size: 0.65rem !important;
    }
    
    .catalog-search-btn {
        font-size: 0.75rem !important;
    }
    
    /* Catalogue grid - 2 columns on tablet */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card h3 {
        font-size: 1.1rem !important;
    }
    
    .product-card .card-img-top {
        height: 200px !important;
        object-fit: cover;
    }
    
    .product-card-price {
        font-size: 0.85rem !important;
    }
    
    .product-card-btn-detail {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.5rem !important;
    }
    
    /* Page produit (product.html) */
    .product-fiche {
        padding: 2rem 0 !important;
    }
    
    .product-fiche h1 {
        font-size: 1.5rem !important;
    }
    
    .product-fiche-after-media {
        margin-top: 1rem !important;
    }
    
    .product-fiche-cta {
        position: relative !important;
        bottom: auto !important;
        margin-top: 1rem !important;
    }
    
    /* Page about */
    .about-page {
        padding: 2rem 0 !important;
    }
    
    .about-page h2.mb-5 {
        font-size: 1.75rem !important;
    }

    .about-page .card {
        margin-bottom: 1rem;
    }
    
    .about-page-figure img {
        height: 200px !important;
        object-fit: cover;
    }
    
    /* Page booking (devis) */
    .booking-page {
        padding: 2rem 0 !important;
    }
    
    .booking-page h1 {
        font-size: 1.5rem !important;
    }
    
    /* Page testimonial */
    .testimonial-page {
        padding: 2rem 0 !important;
    }
    
    .testimonial-item {
        margin-bottom: 1.5rem;
    }
    
    /* Page team */
    .team-page {
        padding: 2rem 0 !important;
    }
    
    .team-item {
        margin-bottom: 1.5rem;
    }
    
    .team-item img {
        height: 200px !important;
        object-fit: cover;
    }

    /* Équipe (about.html) : slider horizontal au lieu d'un empilement vertical */
    #equipe .row.g-4 {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: .5rem;
        scrollbar-width: none;
    }
    #equipe .row.g-4::-webkit-scrollbar { display: none; }
    #equipe .row.g-4 > [class*="col-"] {
        flex: 0 0 78%;
        max-width: 78%;
        scroll-snap-align: center;
    }

    /* Page contact */
    .contact-page {
        padding: 2rem 0 !important;
    }
    
    .contact-form {
        margin-bottom: 2rem;
    }
    
    /* Back to top button tablet */
    .back-to-top {
        right: 25px !important;
        bottom: 25px !important;
    }
}

@media (max-width: 576px) {
    /* Catalogue mobile - single column */
    .catalog-page .container-xxl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-card .card-body {
        padding: 1rem !important;
    }
    
    .product-card .card-img-top {
        height: 180px !important;
    }
    
    .product-card-actions {
        flex-direction: column !important;
    }
    
    .product-card-btn-wa {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-card-btn-detail {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2.5rem 0 1rem !important;
    }
    
    .footer .row.g-5 > div {
        margin-bottom: 1.5rem !important;
    }
    
    .footer h4 {
        font-size: 1rem !important;
    }
    
    .footer p {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    .footer .btn-social {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    .footer input.form-control {
        font-size: 0.9rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .footer button.btn-primary {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .footer-bottom-one-line__copy {
        font-size: 0.75rem !important;
        line-height: 1.5;
    }
    
    .footer-menu {
        gap: 0.5rem 0.75rem !important;
    }
    
    .footer-menu a {
        font-size: 0.75rem !important;
    }
    
    .product-card h3 {
        font-size: 1rem !important;
    }
    
    .product-card .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Page produit mobile */
    .product-fiche .container-xxl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .product-fiche h1 {
        font-size: 1.25rem !important;
    }
    
    .product-fiche-price {
        font-size: 1.5rem !important;
    }
    
    .product-fiche-cta .btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* About mobile */
    .about-page .container-xxl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .about-page h1 {
        font-size: 1.5rem !important;
    }
    
    .about-page .card {
        margin-bottom: 0.75rem;
    }
    
    .about-page .card-body {
        padding: 1rem !important;
    }
    
    .about-page .card h4 {
        font-size: 0.95rem !important;
    }
    
    /* Formulaire mobile amélioré */
    .form-floating label {
        font-size: 0.85rem !important;
    }
    
    .btn {
        font-size: 0.9rem !important;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb {
        font-size: 0.8rem !important;
        padding: 0.5rem !important;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 1rem !important;
    }
    
    h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.1rem !important;
        line-height: 1.3;
    }
}

/* Optimisations tablette (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Hero section tablette */
    .hero-header {
        padding: 5rem 0 3rem !important;
    }
    
    .hero-header h1 {
        font-size: 2.5rem !important;
    }
    
    /* Navigation tablette */
    .navbar-brand img {
        height: 100px !important;
    }
    
    /* Services tablette */
    .service-item {
        margin-bottom: 2rem;
    }
    
    /* Categories grid tablette */
    .about-page-figure img {
        height: 250px !important;
        object-fit: cover;
    }
    
    /* Formulaire tablette */
    .video {
        min-height: 400px !important;
    }
    
    /* Back to top button tablette */
    .back-to-top {
        right: 30px !important;
        bottom: 30px !important;
    }
}

/* Améliorations pour les images responsive */
@media (max-width: 768px) {
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .ratio img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Améliorations pour les espacements mobile */
@media (max-width: 576px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    .p-4 {
        padding: 1rem !important;
    }
    
    .p-5 {
        padding: 1.5rem !important;
    }
}

/* Améliorations pour les boutons mobile */
@media (max-width: 576px) {
    .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 0.375rem !important;
    }
    
    .btn-primary {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    .btn-outline-primary {
        width: 100% !important;
    }
}

/* Améliorations pour les cards mobile */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
        border-radius: 0.5rem !important;
    }
    
    .card-body {
        padding: 1.25rem !important;
    }
    
    .card-img-top {
        height: 200px !important;
        object-fit: cover !important;
    }
}

/* Améliorations pour la navigation mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark) !important;
        padding: 1rem !important;
        border-radius: 0.5rem !important;
        margin-top: 1rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-menu {
        background: var(--dark) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.75rem 1rem !important;
    }
    
    .dropdown-item:hover {
        background: var(--primary) !important;
        color: white !important;
    }
}

/*** Hero alignment ***/
.hero-row{
    min-height: 440px;
}
@media (min-width: 992px) {
    .hero-row{
        align-items: flex-end !important;
    }
    .hero-left,
    .hero-right{
        align-self: flex-end;
    }
    .hero-left{
        justify-content: flex-end !important;
    }
}
/* Le conteneur interne du hero reste un .container Bootstrap (plafonné) :
   on l'élargit pour que le bloc de texte colle au vrai bord gauche. */
.hero-header--home > .container{
    max-width: 100% !important;
    padding-left: clamp(1rem, 3vw, 2.5rem) !important;
    padding-right: clamp(1rem, 3vw, 2.5rem) !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.hero-header--home.py-5{
    padding-bottom: clamp(3.5rem, 4vw + 2.5rem, 6rem) !important;
}
.hero-header--home.mb-5{
    margin-bottom: 0 !important;
}
@media (min-width: 992px) {
    .hero-header--home.py-5{
        padding-top: clamp(3rem, 3vw + 2.2rem, 5rem) !important;
    }
}
@media (min-width: 992px) {
    .hero-row .col-lg-7{
        padding-left: 0;
    }
}

/*** Hero v2 : repère "Solution Saturne" + titre orienté offre ***/
.hero-tag{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem .4rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 209, 126, .4);
    background: rgba(74, 168, 42, .16);
    color: #8FD17E;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
@media (min-width: 992px) {
    .hero-tag{
        align-self: flex-start;
    }
}
.hero-tag::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8FD17E;
    box-shadow: 0 0 0 3px rgba(143, 209, 126, .2);
}
.hero-headline{
    margin: 0 auto .3rem;
    max-width: 22ch;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 1rem + 2vw, 2.35rem);
    text-wrap: balance;
}
@media (min-width: 992px) {
    .hero-left .hero-headline{
        margin-left: 0;
        margin-right: 0;
    }
    .hero-left p{
        font-size: .92rem !important;
    }
    .hero-left .btn{
        padding-top: .6rem !important;
        padding-bottom: .6rem !important;
    }
    .hero-left .d-flex.justify-content-center{
        justify-content: flex-start !important;
    }
}
.hero-stats{
    display: flex;
    justify-content: center;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin-top: 1.1rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-stats .hero-stat b{
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.hero-stats .hero-stat span{
    display: block;
    margin-top: .15rem;
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
}
@media (min-width: 992px) {
    .hero-left .hero-stats{
        justify-content: flex-start;
    }
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
/* Même hauteur pour toutes les cartes d’une ligne (colonnes Bootstrap en stretch) */
.saturne-main .row > [class*="col-"] > .service-item {
    height: 100%;
}

.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Catalogue : onglets catégories (fond actif, plus seulement une ligne) ***/
.saturne-main .tab-class .catalogue-cat-nav {
    border-bottom: none !important;
}
.saturne-main .tab-class .catalogue-cat-nav .nav-item > a {
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid transparent;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.saturne-main .tab-class .catalogue-cat-nav .nav-item > a:not(.active):hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}
.saturne-main .tab-class .catalogue-cat-nav .nav-item > a.active {
    background: linear-gradient(145deg, rgba(74, 168, 42, 0.35), rgba(74, 168, 42, 0.14)) !important;
    border-color: rgba(74, 168, 42, 0.55) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-bottom: none !important;
}
.saturne-main .tab-class .catalogue-cat-nav .nav-item > a.active i.text-primary {
    color: #c8f5b8 !important;
}
.saturne-main .tab-class .catalogue-cat-nav .nav-item > a.active .text-body,
.saturne-main .tab-class .catalogue-cat-nav .nav-item > a.active h6 {
    color: #fff !important;
}

/*** Page catalogue (filtres + grille, même fond Saturne que le reste du site) ***/
.catalog-page .catalog-toolbar-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.68);
}
.catalog-page .catalog-sort {
    max-width: 240px;
    margin-left: auto;
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
@media (min-width: 992px) {
    .catalog-page .catalog-sort {
        margin-top: 0.35rem;
    }
}
/* Panneau recherche catalogue — pleine largeur, thème Saturne */
.saturne-main .catalog-page .catalog-toolbar h2 {
    color: #fff;
}
@media (min-width: 992px) {
    .saturne-main .catalog-page__head {
        position: relative;
        z-index: 1000;
        background: #0b1220;
    }
    .saturne-main .catalog-search-panel-wrap {
        position: sticky;
        top: var(--catalog-filter-sticky-top, 88px);
        z-index: 998;
    }
    .saturne-main .catalog-filter-mobile-toggle {
        display: none !important;
    }
}
.saturne-main .catalog-search-panel__filters {
    flex-shrink: 0;
    background: #0b1220;
    position: relative;
    z-index: 2;
    padding-bottom: 0.25rem;
}
.saturne-main .catalog-search-panel__body {
    flex: 1 1 auto;
    min-height: 0;
    border-top: 0;
    margin-top: 0;
    padding-top: 0.5rem;
    background: #0b1220;
    position: relative;
    z-index: 1;
}
.saturne-main .catalog-search-panel-wrap {
    position: sticky;
    top: var(--catalog-filter-sticky-top, 88px);
    z-index: 1000;
    display: flex;
    align-items: stretch;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1rem;
    background: #0b1220;
    isolation: isolate;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.saturne-main .catalog-cat-rail {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 3.75rem;
    align-self: stretch;
    border-right: 1px solid rgba(74, 168, 42, 0.28);
    padding: 0.65rem 0;
    gap: 0.2rem;
    background: rgba(2, 6, 23, 0.98);
}
.saturne-main .catalog-search-panel__shell {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.saturne-main .catalog-search-panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    flex: 1 1 auto;
    min-height: 0;
    background: #0b1220;
    border: 0;
    border-top: 1px solid rgba(74, 168, 42, 0.28);
    border-bottom: 1px solid rgba(74, 168, 42, 0.28);
    border-radius: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - var(--catalog-filter-sticky-top, 88px));
    overflow: hidden;
}
.saturne-main .catalog-search-panel__products-scroll {
    overflow-x: hidden;
    flex: 1 1 auto;
    min-height: 0;
    background: #0b1220;
}
@media (min-width: 992px) {
    .saturne-main .catalog-search-panel__products-scroll {
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .saturne-main .catalog-search-panel-wrap {
        max-height: calc(100vh - var(--catalog-filter-sticky-top, 88px));
    }
}
.saturne-main .catalog-filter-mobile-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 0;
    border-bottom: 1px solid rgba(74, 168, 42, 0.28);
    background: #0b1220;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.saturne-main .catalog-filter-mobile-toggle__count {
    margin-left: auto;
    color: var(--primary);
    font-weight: 700;
}
.saturne-main .catalog-filter-mobile-toggle__chevron {
    transition: transform 0.2s;
    opacity: 0.7;
}
.saturne-main .catalog-search-panel-wrap:not(.is-open) .catalog-filter-mobile-toggle__chevron {
    transform: rotate(0deg);
}
.saturne-main .catalog-search-panel-wrap.is-open .catalog-filter-mobile-toggle__chevron {
    transform: rotate(180deg);
}
.saturne-main .catalog-search-panel__inner {
    display: block;
    width: 100%;
}
.saturne-main .catalog-cat-rail__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.85rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    transition: color 0.15s, background 0.15s;
}
.saturne-main .catalog-cat-rail__btn:hover {
    color: var(--primary);
    background: rgba(74, 168, 42, 0.1);
}
.saturne-main .catalog-cat-rail__btn.active {
    color: var(--primary);
    background: rgba(74, 168, 42, 0.14);
}
.saturne-main .catalog-cat-rail__btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--primary);
}
.saturne-main .catalog-search-panel__main {
    flex: 1;
    min-width: 0;
    padding: 1.1rem 0 0.35rem;
}
.saturne-main .catalog-search-grid {
    display: grid;
    gap: 0.75rem 1rem;
    align-items: end;
}
.saturne-main .catalog-search-grid--primary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.saturne-main .catalog-field__range {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.saturne-main .catalog-field__range .catalog-field__control {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}
.saturne-main .catalog-field__range-sep {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    flex-shrink: 0;
    user-select: none;
    line-height: 1;
}
.saturne-main .catalog-search-grid--secondary {
    grid-template-columns: minmax(130px, 1fr) minmax(110px, 0.95fr) minmax(160px, 1.65fr);
    margin-top: 0.75rem;
}
.saturne-main .catalog-field__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.saturne-main .catalog-field__label--invisible {
    visibility: hidden;
    height: 0;
    margin: 0;
    overflow: hidden;
}
.saturne-main .catalog-field__control {
    width: 100%;
    min-height: 2.55rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(74, 168, 42, 0.28);
    border-radius: 10px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.saturne-main .catalog-field__control::placeholder {
    color: rgba(255, 255, 255, 0.38);
}
.saturne-main .catalog-field__control:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(74, 168, 42, 0.22);
    background: rgba(2, 6, 23, 0.85);
}
.saturne-main .catalog-field__control option {
    background: #0b1220;
    color: #fff;
}
.saturne-main .catalog-field--pay {
    grid-column: span 1;
}
.saturne-main .catalog-segment {
    display: flex;
    border: 1px solid rgba(74, 168, 42, 0.28);
    border-radius: 10px;
    overflow: hidden;
    min-height: 2.55rem;
    background: rgba(2, 6, 23, 0.65);
}
.saturne-main .catalog-segment__btn {
    flex: 1;
    border: 0;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.35rem 0.5rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.saturne-main .catalog-segment__btn + .catalog-segment__btn {
    border-left: 1px solid rgba(74, 168, 42, 0.28);
}
.saturne-main .catalog-segment__btn.active {
    background: rgba(74, 168, 42, 0.22);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(74, 168, 42, 0.45);
}
.saturne-main .catalog-field--submit {
    display: flex;
    flex-direction: column;
}
.saturne-main .catalog-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.55rem;
    padding: 0.5rem 0.9rem;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(74, 168, 42, 0.35);
}
.saturne-main .catalog-search-btn:hover {
    background: #3d9424;
    color: #fff;
    box-shadow: 0 6px 22px rgba(74, 168, 42, 0.45);
}
.saturne-main .catalog-search-btn:active {
    transform: scale(0.98);
}
.saturne-main .catalog-results-wrap {
    max-width: 100%;
}
@media (max-width: 1199.98px) {
    .saturne-main .catalog-search-grid--primary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .saturne-main .catalog-search-grid--secondary {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 991.98px) {
    .saturne-main .catalog-page {
        display: block;
        min-height: 0 !important;
    }
    .saturne-main .catalog-page__head {
        position: relative;
        z-index: 1000;
        background: transparent;
    }
    .saturne-main .catalog-search-panel-wrap {
        position: sticky;
        top: var(--catalog-filter-sticky-top, 0);
        z-index: 1000;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-bottom: 0.75rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
        min-height: 3.15rem;
    }
    .saturne-main .catalog-cat-rail {
        width: 3.25rem;
        flex-direction: column;
        border-right: 1px solid rgba(74, 168, 42, 0.28);
        border-bottom: 0;
    }
    .saturne-main .catalog-search-panel__shell {
        flex: 1;
        min-width: 0;
    }
    .saturne-main .catalog-filter-mobile-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        min-height: 3.15rem;
        padding: 0.85rem 1rem;
        border: 0;
        border-left: 4px solid var(--primary);
        border-bottom: 1px solid rgba(74, 168, 42, 0.35);
    }
    .saturne-main .catalog-search-panel-wrap:not(.is-open) .catalog-search-panel__filters {
        display: none !important;
    }
    .saturne-main .catalog-search-panel-wrap:not(.is-open) .catalog-search-panel {
        display: block !important;
    }
    .saturne-main .catalog-search-panel-wrap:not(.is-open) .catalog-search-panel__products-scroll {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .saturne-main .catalog-search-panel-wrap.is-open .catalog-search-panel {
        display: flex;
        flex-direction: column;
    }
    .saturne-main .catalog-search-panel-wrap.is-open .catalog-search-panel__products-scroll {
        max-height: none !important;
        overflow: visible !important;
    }
    .saturne-main .catalog-search-panel {
        max-height: none;
        overflow: visible;
        border-top: 0;
    }
}
@media (max-width: 767.98px) {
    .saturne-main .catalog-search-panel__main {
        padding: 0.85rem 0 0.75rem;
    }
    .saturne-main .catalog-search-grid--primary,
    .saturne-main .catalog-search-grid--secondary {
        grid-template-columns: 1fr;
    }
    .saturne-main .catalog-field--pay,
    .saturne-main .catalog-field--sort,
    .saturne-main .catalog-field--submit {
        grid-column: 1;
    }
}
.saturne-main .catalog-pagination .page-link {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(74, 168, 42, 0.28);
    font-weight: 600;
    background: rgba(11, 18, 32, 0.55);
    min-width: 2.5rem;
    text-align: center;
}
.saturne-main .catalog-pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.saturne-main .catalog-pagination .page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.35);
    background: rgba(11, 18, 32, 0.35);
}


/*** Devis Image ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(https://images.unsplash.com/photo-1497366216548-375f7039ee36?w=1200&h=800&fit=crop);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    display: none;
}


#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: 0.35rem;
}

.team-item img {
    transform: none;
}

.saturne-main .team-item h5 {
    color: #fff !important;
}

.saturne-main .team-item small {
    color: rgba(255, 255, 255, 0.88) !important;
    display: block;
    padding: 0.2rem 0.75rem 0.35rem;
    line-height: 1.5;
    overflow: visible;
}

/* Bandeau décoratif sous les cartes équipe (remplace l’ancienne rangée réseaux) */
.team-card-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.35rem;
    padding: 0.65rem 0.5rem 0.85rem;
    border-top: 1px solid rgba(74, 168, 42, 0.22);
}

.team-card-accent-bar {
    display: block;
    width: 2.75rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(74, 168, 42, 0.95), transparent);
    box-shadow: 0 0 12px rgba(74, 168, 42, 0.35);
}

.team-card-accent-glyph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    font-size: 0.82rem;
    color: rgba(74, 168, 42, 0.72);
    letter-spacing: 0.02em;
}

.team-card-accent-glyph i {
    opacity: 0.9;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .testimonial-stars .fa.fa-star {
    color: #fde047 !important;
}
.testimonial-carousel .owl-item.center .testimonial-item .testimonial-stars .far.fa-star {
    color: rgba(255, 255, 255, 0.45) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

/* Copyright + Devvorx + liens menu sur une seule ligne (scroll horizontal si besoin) */
.footer .footer-bottom-one-line {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.footer .footer-bottom-one-line > * {
    white-space: nowrap;
}
.footer .footer-bottom-one-line .footer-menu {
    flex: 0 0 auto;
}
.footer .footer-bottom-one-line__copy {
    flex: 0 1 auto;
    min-width: 0;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a.footer-dev-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
    border-bottom: none !important;
}
.footer .copyright a.footer-dev-link:hover {
    color: #fff;
}

/* ----- Footer / contact : e-mail lisible (pas de coupure au @) ----- */
.footer-contact-email__link,
.contact-email-line__link {
  white-space: nowrap;
}
.footer-contact-email__link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.contact-email-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}

/* ----- Bas de pied de page : copyright / crédit dev centré / menu -----
   Sélecteur composé (.footer-bottom-one-line.footer-bottom-grid) pour battre
   en spécificité la règle plus ancienne ".footer .footer-bottom-one-line"
   qui fixait display:flex/nowrap et gagnait silencieusement. */
.footer .footer-bottom-one-line.footer-bottom-grid{
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    width: 100%;
}
@media (min-width: 576px){
    .footer .footer-bottom-one-line.footer-bottom-grid{
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        text-align: left;
        gap: .5rem !important;
    }
    .footer-bottom-grid .footer-dev-credit{
        text-align: center;
        white-space: nowrap;
    }
    .footer-bottom-grid .footer-menu{
        justify-self: end;
    }
}

@media (min-width: 576px) and (max-width: 767.98px){
    .footer-bottom-grid .footer-bottom-one-line__copy,
    .footer-bottom-grid .footer-menu a{
        font-size: .72rem;
    }
    .footer-bottom-grid .footer-menu a{
        margin-right: 8px;
        padding-right: 8px;
    }
}

/* ----- Formulaire newsletter : bouton à côté, plus en superposition ----- */
.footer-newsletter-form{
    align-items: stretch;
}
.footer-newsletter-form .form-control{
    min-width: 0;
    flex: 1 1 auto;
}
.footer-newsletter-form .btn{
    white-space: nowrap;
}
@media (max-width: 576px){
    .footer-newsletter-form .btn.btn-primary{
        width: auto !important;
        flex: 0 0 auto;
        margin-bottom: 0;
    }
}

/* ----- Barre de marque en tête de pied de page ----- */
.footer-brand-bar{
    padding-bottom: .85rem;
    margin-bottom: .85rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand-bar__logo{
    height: 46px;
    width: auto;
}
@media (max-width: 767.98px){
    .footer-brand-bar > div:first-child{
        flex-direction: column;
    }
    .footer-brand-bar__logo{
        height: 38px !important;
        width: auto !important;
    }
}
.footer-brand-bar__name{
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
    font-size: 1.05rem;
}
.footer-brand-bar__tag{
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    margin-top: .1rem;
}
.footer-brand-bar__wa{
    white-space: nowrap;
    font-weight: 600;
}
@media (max-width: 575.98px) {
    .footer-brand-bar__tag{
        font-size: .76rem;
    }
}

/* ----- Footer unifié (site-footer) + responsive ----- */
.site-footer.footer .footer-main-row > [class*="col-"] {
    min-width: 0;
}
.site-footer.footer .footer-newsletter-form .form-control {
    min-height: 48px;
}
@media (max-width: 575.98px) {
    .site-footer.footer .footer-newsletter-form .btn.position-absolute {
        position: static !important;
        display: block;
        width: 100%;
        margin-top: 0.5rem !important;
        margin-right: 0 !important;
    }
    .site-footer.footer .footer-newsletter-form .form-control {
        padding-right: 0.75rem !important;
    }
}
@media (max-width: 767.98px) {
    .footer .footer-bottom-one-line {
        flex-wrap: wrap !important;
        justify-content: center !important;
        overflow-x: visible !important;
        text-align: center;
    }
    .footer .footer-bottom-one-line > div {
        white-space: normal !important;
    }
    .footer .footer-bottom-one-line__copy {
        white-space: normal !important;
    }
}

/* ----- Hero accueil : bloc gauche et carte alignés sur la même ligne, descendus ----- */
@media (min-width: 992px) {
    .hero-quick-col {
        margin-bottom: -35px !important;
    }
    .hero-left {
        margin-bottom: -35px !important;
    }
}
@media (max-width: 991.98px) {
    .hero-quick-col {
        margin-bottom: 0 !important;
    }
    .quick-request {
        max-width: min(100%, 400px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Logo navbar : taille intermédiaire tablette */
@media (min-width: 577px) and (max-width: 991.98px) {
    .navbar-brand img {
        height: 80px !important;
        width: auto !important;
    }
}

/* Première section contenu (accueil) : marges latérales sûres */
.saturne-main .home-after-services > .container {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}

/*** Consentement cookies ***/
.saturne-cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 10050;
    padding: 0.75rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.28s ease, transform 0.32s ease;
}
.saturne-cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.saturne-cookie-consent__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(74, 168, 42, 0.35);
    background: rgba(11, 18, 32, 0.97);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}
.saturne-cookie-consent__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(74, 168, 42, 0.18);
    color: var(--primary);
    font-size: 1.15rem;
}
.saturne-cookie-consent__content {
    flex: 1 1 220px;
    min-width: 0;
}
.saturne-cookie-consent__title {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}
.saturne-cookie-consent__text {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}
.saturne-cookie-consent__link {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
}
.saturne-cookie-consent__link:hover {
    color: #6fd048;
}
.saturne-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: auto;
}
.saturne-cookie-consent__btn {
    min-width: 6.5rem;
    font-weight: 600;
}
body.saturne-cookie-open .back-to-top {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 575.98px) {
    .saturne-cookie-consent__panel {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: .5rem .7rem;
        padding: .85rem .9rem;
    }
    .saturne-cookie-consent__icon {
        grid-column: 1;
        grid-row: 1;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .saturne-cookie-consent__content {
        grid-column: 2;
        grid-row: 1;
    }
    .saturne-cookie-consent__title { font-size: .86rem; margin-bottom: .2rem; }
    .saturne-cookie-consent__text { font-size: .74rem; line-height: 1.35; }
    .saturne-cookie-consent__actions {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-left: 0;
        width: 100%;
        flex-wrap: nowrap;
        gap: .5rem;
    }
    .saturne-cookie-consent__btn {
        flex: 1 1 0;
        min-width: 0;
        padding: .4rem .5rem;
        font-size: .82rem;
    }
}

/* ============================================================
   Catalogue — habillage clair "pro" (sidebar admin-style),
   scopé à .catalog-light-v1 pour ne pas toucher aux autres pages.
   ============================================================ */
.saturne-main.catalog-light-v1 {
    background: #F6F8FC !important;
}
.saturne-main.catalog-light-v1::before {
    background: #F6F8FC !important;
    background-image: none !important;
}
.saturne-main.catalog-light-v1 .catalog-page__head {
    background: #F6F8FC !important;
}
.saturne-main.catalog-light-v1 .catalog-toolbar h2,
.saturne-main.catalog-light-v1 .section-title {
    color: #101826 !important;
}
.saturne-main.catalog-light-v1 .catalog-toolbar-meta {
    color: rgba(16, 24, 38, .62) !important;
}

/* Panneau filtres + rail catégories */
.saturne-main.catalog-light-v1 .catalog-search-panel-wrap,
.saturne-main.catalog-light-v1 .catalog-search-panel__filters,
.saturne-main.catalog-light-v1 .catalog-search-panel__body,
.saturne-main.catalog-light-v1 .catalog-search-panel,
.saturne-main.catalog-light-v1 .catalog-search-panel__products-scroll,
.saturne-main.catalog-light-v1 .catalog-filter-mobile-toggle {
    background: #FFFFFF !important;
    box-shadow: none !important;
}
.saturne-main.catalog-light-v1 .catalog-search-panel-wrap {
    border-bottom: 1px solid rgba(16, 24, 38, .10);
}
.saturne-main.catalog-light-v1 .catalog-search-panel {
    border-top: 1px solid rgba(16, 24, 38, .10) !important;
    border-bottom: 1px solid rgba(16, 24, 38, .10) !important;
    color: #101826 !important;
}
.saturne-main.catalog-light-v1 .catalog-filter-mobile-toggle {
    color: #101826 !important;
    border-bottom: 1px solid rgba(16, 24, 38, .10) !important;
}

/* La barre "rail + panneau" passe de rangée à colonne : le rail catégories
   devient une rangée de pills au-dessus du formulaire, plus une colonne
   verticale étirée sur toute la hauteur du panneau. */
.saturne-main.catalog-light-v1 .catalog-search-panel-wrap {
    flex-direction: column !important;
    align-items: stretch !important;
    position: static !important;
    max-height: none !important;
    box-shadow: none !important;
}
/* Désactive le panneau sticky + scroll interne (JS) : la page défile
   normalement, comme la maquette validée. */
.saturne-main.catalog-light-v1 .catalog-search-panel {
    max-height: none !important;
    overflow: visible !important;
}
.saturne-main.catalog-light-v1 .catalog-search-panel__products-scroll {
    max-height: none !important;
    overflow: visible !important;
}
.saturne-main.catalog-light-v1 .catalog-search-panel__shell {
    width: 100%;
}

/* Rail catégories : icônes + libellés visibles, en ligne façon "pills" */
.saturne-main.catalog-light-v1 .catalog-cat-rail {
    flex-direction: row !important;
    flex-wrap: wrap;
    width: 100% !important;
    height: auto !important;
    align-self: auto !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(16, 24, 38, .10);
    background: #FFFFFF !important;
    padding: .85rem 1rem !important;
    gap: .5rem !important;
}
.saturne-main.catalog-light-v1 .catalog-cat-rail__btn {
    width: auto !important;
    min-height: 0 !important;
    display: inline-flex !important;
    align-items: center;
    gap: .45rem;
    padding: .5rem .9rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(16, 24, 38, .14) !important;
    background: #fff !important;
    color: rgba(16, 24, 38, .62) !important;
    font-size: .82rem !important;
    font-weight: 600;
}
.saturne-main.catalog-light-v1 .catalog-cat-rail__btn .visually-hidden {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}
.saturne-main.catalog-light-v1 .catalog-cat-rail__btn:hover {
    color: #3F9424 !important;
    background: #EAF6E2 !important;
    border-color: rgba(74, 168, 42, .35) !important;
}
.saturne-main.catalog-light-v1 .catalog-cat-rail__btn.active {
    color: #fff !important;
    background: #0B1220 !important;
    border-color: #0B1220 !important;
}
.saturne-main.catalog-light-v1 .catalog-cat-rail__btn.active::before {
    display: none;
}

/* Disposition : filtres en colonne de gauche, résultats à droite */
.saturne-main.catalog-light-v1 .catalog-layout-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 0 clamp(1rem, 3vw, 1.5rem) .5rem;
}
.saturne-main.catalog-light-v1 .catalog-sidebar {
    background: #fff !important;
    border: 1px solid rgba(16, 24, 38, .10);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    position: sticky;
    top: 1.25rem;
}
.saturne-main.catalog-light-v1 .catalog-search-panel {
    background: transparent !important;
    border: 0 !important;
}
.saturne-main.catalog-light-v1 .catalog-search-panel__main {
    padding: 0 !important;
}
.saturne-main.catalog-light-v1 .catalog-search-grid--primary,
.saturne-main.catalog-light-v1 .catalog-search-grid--secondary {
    grid-template-columns: 1fr !important;
    gap: .9rem !important;
    margin-top: 0 !important;
}
.saturne-main.catalog-light-v1 .catalog-field--pay,
.saturne-main.catalog-light-v1 .catalog-field--sort,
.saturne-main.catalog-light-v1 .catalog-field--submit {
    grid-column: auto !important;
}
.saturne-main.catalog-light-v1 .catalog-content {
    min-width: 0;
}
/* Grille de cartes : espacement garanti + 4 par ligne sur grand écran,
   indépendant du système de gouttières Bootstrap (row-cols/g-4). */
.saturne-main.catalog-light-v1 #catalogGrid.row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    margin: 0 !important;
}
.saturne-main.catalog-light-v1 #catalogGrid > .catalog-product {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
@media (min-width: 576px) {
    .saturne-main.catalog-light-v1 #catalogGrid.row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) {
    .saturne-main.catalog-light-v1 #catalogGrid.row {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 991.98px) {
    .saturne-main.catalog-light-v1 .catalog-layout-grid {
        grid-template-columns: 1fr;
    }
    .saturne-main.catalog-light-v1 .catalog-sidebar {
        position: static;
    }
}

/* Champs de filtre */
.saturne-main.catalog-light-v1 .catalog-field__label {
    color: rgba(16, 24, 38, .55) !important;
}
.saturne-main.catalog-light-v1 .catalog-field__control {
    color: #101826 !important;
    background: #fff !important;
    border: 1px solid rgba(16, 24, 38, .16) !important;
}
.saturne-main.catalog-light-v1 .catalog-field__control::placeholder {
    color: rgba(16, 24, 38, .4) !important;
}
.saturne-main.catalog-light-v1 .catalog-field__control:focus {
    border-color: #4AA82A !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(74, 168, 42, .18) !important;
}
.saturne-main.catalog-light-v1 .catalog-field__control option {
    background: #fff !important;
    color: #101826 !important;
}
.saturne-main.catalog-light-v1 .catalog-field__range-sep {
    color: rgba(16, 24, 38, .35) !important;
}
.saturne-main.catalog-light-v1 .catalog-segment {
    background: #fff !important;
    border: 1px solid rgba(16, 24, 38, .16) !important;
}
.saturne-main.catalog-light-v1 .catalog-segment__btn {
    color: rgba(16, 24, 38, .55) !important;
}
.saturne-main.catalog-light-v1 .catalog-segment__btn + .catalog-segment__btn {
    border-left: 1px solid rgba(16, 24, 38, .16) !important;
}
.saturne-main.catalog-light-v1 .catalog-segment__btn.active {
    background: #EAF6E2 !important;
    color: #101826 !important;
    box-shadow: inset 0 0 0 1px rgba(74, 168, 42, .45) !important;
}

/* Cartes produits — inspirées d'une maquette de carte produit "app store"
   (grande photo, badge + logo rond, titre XL, sous-titre, description,
   pastille prix + bouton pilule sombre avec flèche). */
.mcard {
    background: #FFFFFF;
    border: 1px solid rgba(16, 24, 38, .08);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(16,24,38,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(16, 24, 38, .14);
    border-color: rgba(74, 168, 42, .35);
}
.mcard-media {
    position: relative;
    margin: 10px 10px 0;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(155deg, #EAF6E2, #fff);
    overflow: hidden;
}
.mcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mcard-badge {
    position: absolute;
    top: .65rem;
    left: .65rem;
    background: rgba(11, 18, 32, .78);
    color: #F6F8FC;
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .32em .7em;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.mcard-check {
    position: absolute;
    top: .65rem;
    right: .65rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(16,24,38,.22);
}
.mcard-check svg { width: 14px; height: 14px; color: var(--primary-deep, #2F6E37); }
.mcard-dots{
    position: absolute;
    left: 0; right: 0; bottom: .55rem;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.mcard-dots span{ width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.55); }
.mcard-dots span:first-child{ background: #fff; }
.mcard-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mcard-title, .saturne-main h3.mcard-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #101826 !important;
    margin: 0 0 .15rem;
}
.mcard-subtitle{
    font-size: .82rem;
    font-weight: 600;
    color: rgba(16,24,38,.42);
    margin: 0 0 .35rem;
}
.mcard-desc{
    font-size: .8rem;
    line-height: 1.4;
    color: rgba(16,24,38,.52);
    margin: 0 0 .9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mcard-footer{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    flex-wrap: wrap;
    row-gap: .5rem;
}
.mcard-price-pill{
    display: flex;
    align-items: baseline;
    gap: .4rem;
    background: #F1F4F8;
    border-radius: 999px;
    padding: .45rem .85rem;
    flex-shrink: 0;
}
.mcard-price {
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    color: #101826;
    white-space: nowrap;
}
.mcard-price-old {
    font-size: .7rem;
    color: rgba(16, 24, 38, .38);
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.mcard-actions {
    display: flex;
    align-items: center;
    gap: .4rem;
}
.mcard-btn-detail {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .5rem .5rem .85rem;
    border-radius: 999px;
    background: #0B1220;
    color: #fff !important;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: none;
    white-space: nowrap;
}
.mcard-btn-detail:hover { background: #17263F; color: #fff; }
.mcard-btn-detail-icon{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary, #4AA82A);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mcard-btn-detail-icon svg{ width: 10px; height: 10px; color: #fff; }
.mcard-btn-wa {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366 !important;
    color: #fff !important;
    border: none !important;
}
.mcard-btn-wa:hover { background: #1ebe57 !important; }

@media (max-width: 480px){
    .mcard-footer{ gap: .35rem; }
    .mcard-price-pill{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: .35rem .65rem;
    }
    .mcard-price{ font-size: .82rem; }
    .mcard-price-old{ font-size: .64rem; }
    .mcard-actions{ gap: .3rem; }
    .mcard-btn-wa{ width: 30px; height: 30px; }
    .mcard-btn-detail{ padding: .42rem .42rem .42rem .7rem; font-size: .72rem; gap: .3rem; }
    .mcard-btn-detail-icon{ width: 19px; height: 19px; }
}

.saturne-main.catalog-light-v1 .catalog-pagination .page-link {
    background: #fff !important;
    border-color: rgba(16, 24, 38, .16) !important;
    color: #101826 !important;
}
.saturne-main.catalog-light-v1 .catalog-pagination .page-item.active .page-link {
    background: #0B1220 !important;
    border-color: #0B1220 !important;
    color: #fff !important;
}

.saturne-main.catalog-light-v1 .catalog-pagination .page-link {
    background: #fff !important;
    border-color: rgba(16, 24, 38, .16) !important;
    color: #101826 !important;
}
.saturne-main.catalog-light-v1 .catalog-pagination .page-item.active .page-link {
    background: #0B1220 !important;
    border-color: #0B1220 !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .saturne-main.catalog-light-v1 .catalog-cat-rail {
        border-bottom: 1px solid rgba(16, 24, 38, .10) !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
    .saturne-main.catalog-light-v1 .catalog-cat-rail::-webkit-scrollbar {
        display: none;
    }
    .saturne-main.catalog-light-v1 .catalog-cat-rail__btn {
        flex-shrink: 0 !important;
        scroll-snap-align: start;
    }
}

/* ============================================================
   Page "Import / Export" — route entre ports, processus, FAQ
   ============================================================ */
.impexp-eyebrow{
    display: inline-flex; align-items: center; gap: 10px;
    font-family: "Outfit", sans-serif; font-weight: 700; font-size: 12.5px;
    text-transform: uppercase; letter-spacing: .1em; color: var(--primary);
    margin-bottom: 14px;
}
.impexp-eyebrow::before{ content:""; width: 22px; height: 2px; background: var(--primary); display: inline-block; }
.impexp-section{ padding-block: clamp(48px,7vw,84px); }
.impexp-section__head{ max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(32px,5vw,48px); }
.saturne-main .impexp-section__head h2{ font-size: clamp(24px,1.6rem+1vw,34px); font-weight: 800; letter-spacing: -0.015em; color: #fff; }

/* Route : ports d'origine -> navire -> ports de destination */
.impexp-route{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: clamp(24px,4vw,44px);
}
.impexp-route__grid{ display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.impexp-route__col{ min-width: 0; }
.impexp-route__col h4{ font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); font-weight: 700; margin-bottom: 16px; }
.impexp-route__col.is-end{ text-align: right; }
.impexp-route__chips{ display: flex; flex-wrap: wrap; gap: 8px; }
.impexp-route__chip{ flex-shrink: 0; }
.impexp-route__col.is-end .impexp-route__chips{ justify-content: flex-end; }
.impexp-route__chip{ background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: #fff; }
.impexp-route__ship{ display: flex; flex-direction: column; align-items: center; gap: 10px; padding-inline: 12px; }
.impexp-route__ship svg{ width: 46px; height: 46px; }
.impexp-route__ship-line{ width: 100%; min-width: 64px; height: 2px; background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 14px); }
.impexp-route__ship span{ font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
@media (max-width: 760px){
    .impexp-route__grid{ grid-template-columns: 1fr; text-align: left; }
    .impexp-route__col.is-end{ text-align: left; }
    .impexp-route__col.is-end .impexp-route__chips{ justify-content: flex-start; }
    .impexp-route{ padding-inline: 0; }
    .impexp-route__grid{ padding-inline: clamp(20px,4vw,28px); }
    .impexp-route__chips{
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        padding-right: clamp(20px,4vw,28px);
        margin-right: calc(-1 * clamp(20px,4vw,28px));
        scrollbar-width: none;
    }
    .impexp-route__chips::-webkit-scrollbar{ display: none; }
}

/* Processus : 5 étapes horizontales */
.impexp-flow{ position: relative; }
.impexp-flow__line{ position: absolute; left: 0; right: 0; top: 27px; height: 2px; background: rgba(255,255,255,.12); z-index: 0; }
.impexp-flow__list{ list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; position: relative; z-index: 1; }
.impexp-flow__item{
    display: flex; flex-direction: column; gap: 14px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 18px;
}
.impexp-flow__num{
    width: 48px; height: 48px; border-radius: 50%; background: rgba(74,168,42,.16); border: 1.5px solid rgba(74,168,42,.4);
    color: var(--primary); font-family: "Outfit", sans-serif; font-weight: 800; font-size: 1.05rem;
    display: flex; align-items: center; justify-content: center; font-variant-numeric: tabular-nums;
}
.saturne-main .impexp-flow__item h3{ font-size: 15.5px; font-weight: 700; color: #fff; margin: 0; }
.impexp-flow__item p{ font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.55; margin: 0; }
.impexp-flow__thumb{ border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; margin-top: 2px; }
.impexp-flow__thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px){
    .impexp-flow__list{ grid-template-columns: 1fr 1fr; }
    .impexp-flow__line{ display: none; }
}
@media (max-width: 560px){ .impexp-flow__list{ grid-template-columns: 1fr; } }

/* Deux sens, un même suivi : panneaux import / export */
.impexp-split__grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,28px); }
@media (max-width: 820px){ .impexp-split__grid{ grid-template-columns: 1fr; } }
.impexp-panel{ background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: clamp(24px,3vw,32px); }
.impexp-panel__tag{ display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.impexp-panel--import .impexp-panel__tag{ background: rgba(74,168,42,.18); color: #8FE070; }
.impexp-panel--export .impexp-panel__tag{ background: rgba(228,168,59,.18); color: #E4A83B; }
.saturne-main .impexp-panel h3{ font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.impexp-panel ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.impexp-panel li{ display: flex; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.5; }
.impexp-panel li svg{ color: var(--primary); flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }

/* CTA final */
.impexp-cta-card{
    background: var(--dark); border-radius: 22px; padding: clamp(28px,4vw,44px);
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.saturne-main .impexp-cta-card h2{ font-size: clamp(20px,1.1rem+0.9vw,26px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.impexp-cta-card p{ color: rgba(255,255,255,.65); font-size: 14.5px; max-width: 36ch; margin: 0; }
.impexp-cta-card__row{ display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 420px){
    .impexp-cta-card__row{ flex-wrap: nowrap; gap: 10px; }
}