/* ============================================ */
/* PROJET: Regen Agency                        */
/* CLIENT: Regen Agency                        */
/* DATE: Janvier 2025                          */
/* ============================================ */


/* ============================================ */
/* 1. VARIABLES CSS                            */
/* ============================================ */
:root {
    /* === COULEURS === */
    --color-primary: #173C3A;      /* Vert foncé */
    --color-secondary: #2FB963;    /* Vert vif */
    --color-accent: #05C08A;       /* Turquoise */
    --color-dark: #202020;         /* Textes foncés */
    --color-light: #f8faf9;        /* Fond clair */
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* RGB pour les rgba() */
    --color-primary-rgb: 23, 60, 58;
    --color-secondary-rgb: 47, 185, 99;
    --color-accent-rgb: 5, 192, 138;

    /* Dégradé du logo */
    --gradient-logo: linear-gradient(135deg, #2FB963 0%, #05C08A 50%, #173C3A 100%);
    --gradient-logo-hover: linear-gradient(135deg, #34c96d 0%, #06d499 50%, #1d4a47 100%);

    /* Couleurs services */
    --color-google-blue: #4285F4;
    --color-google-red: #DB4437;
    --color-google-yellow: #F4B400;
    --color-google-green: #0F9D58;
    --color-meta-blue: #1877F2;
    --color-meta-green: #42b72a;
    --color-formation-orange: #f59e0b;
    --color-formation-red: #ef4444;
    --color-consent-purple: #6366f1;
    --color-consent-violet: #8b5cf6;
    
    /* === TYPOGRAPHIES === */
    --font-primary: 'Quicksand', sans-serif;
    
    /* === ESPACEMENTS === */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 3rem;       /* 48px */
    --spacing-2xl: 5rem;      /* 80px */
    
    /* === BORDURES === */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* === OMBRES === */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    /* === TRANSITIONS === */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* === LAYOUT === */
    --max-width: 1200px;
    --header-height: 80px;
}


/* ============================================ */
/* 2. RESET & BASE                             */
/* ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

strong {
    font-weight: 600;
    color: var(--color-primary);
}


/* ============================================ */
/* 3. TYPOGRAPHIE                              */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-md);
}

p:last-child {
    margin-bottom: 0;
}

.text-gradient {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================ */
/* 4. LAYOUT                                   */
/* ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-2xl) 0;
    overflow: visible;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section__title {
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

.section__title--white {
    color: var(--color-white);
}

.pole-section--dark .section__title,
.pole-section--dark .section__description {
    color: var(--color-white);
}

.pole-section--dark .section__description {
    opacity: 0.85;
}

.pole-section--dark .section__badge {
    background: rgba(var(--color-secondary-rgb), 0.2);
    color: var(--color-secondary);
}

.section__description {
    font-size: 1.1rem;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}


/* ============================================ */
/* 5. HEADER                                   */
/* ============================================ */
.header {
    position: fixed;
    top: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    /* Pill compacte : la barre epouse son contenu au lieu de s'etirer sur 1200px */
    width: max-content;
    max-width: calc(100% - 2rem);
    z-index: 1000;

    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(170%);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-lg);
    /* Reflet lumineux sur la tranche superieure = effet verre "liquid glass" */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 8px 24px rgba(0, 0, 0, 0.05);

    transition: var(--transition-normal);
}

.header__container {
    padding: 0 var(--spacing-lg);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 36px;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.nav__logo-icon {
    width: 40px;
    height: 40px;
}

.nav__logo-img {
    height: 50px;
    width: auto;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav__logo-regen,
.nav__logo-agency {
    color: var(--color-dark);
}

.nav__logo-text .green {
    color: var(--color-secondary);
}

/* Menu */
.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav__link {
    font-weight: 500;
    color: var(--color-dark);
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav__link:hover::after {
    width: 100%;
}

/* Dropdown */
.nav__item--dropdown {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    padding: var(--spacing-sm);
    
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9375rem;
    color: var(--color-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav__dropdown li a:hover {
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
}

/* Dropdown Groups (Pôles) */
.nav__dropdown-group {
    padding: var(--spacing-xs) 0;
}

.nav__dropdown-group + .nav__dropdown-group {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: var(--spacing-xs);
    padding-top: var(--spacing-xs);
}

.nav__dropdown-label {
    display: block;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    pointer-events: none;
}

/* CTA Nav */
.nav__cta {
    flex-shrink: 0;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav__cta--client {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.nav__cta--client:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Menu burger */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    height: 3px;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav__toggle span:nth-child(1) {
    width: 24px;
    background: var(--color-primary);
}

.nav__toggle span:nth-child(2) {
    width: 18px;
    background: var(--color-secondary);
}

.nav__toggle span:nth-child(3) {
    width: 24px;
    background: var(--color-accent);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--color-primary);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--color-primary);
}


/* ============================================ */
/* 6. BOUTONS                                  */
/* ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.btn:focus-visible {
    outline: none;
}

.btn--primary {
    background: var(--gradient-logo);
    color: var(--color-white);
    outline: none;
}

.btn--primary:hover {
    background: var(--gradient-logo-hover);
}

.btn--primary:focus {
    outline: none;
}

.btn--secondary {
    background: transparent;
    color: var(--color-secondary);
    border: none;
    outline: none;
    box-shadow: inset 0 0 0 2px var(--color-secondary);
}

.btn--secondary:hover {
    background: var(--gradient-logo);
    color: var(--color-white);
}

.btn--secondary:focus {
    outline: none;
}

/* Sur la barre en verre depoli, le vert vif manque de contraste */
.header .btn--secondary {
    color: var(--color-primary);
    box-shadow: inset 0 0 0 2px var(--color-primary);
}

/* Bouton Espace Utilisateur : pastille de verre assortie a la barre,
   avec icone utilisateur (mask = suit la couleur du texte) */
.header .nav__cta--client {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
                inset 0 0 0 1px rgba(255, 255, 255, 0.55),
                0 2px 8px rgba(0, 0, 0, 0.06);
}

.header .nav__cta--client::before {
    content: '';
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header .nav__cta--client:hover {
    background: var(--gradient-logo);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(47, 185, 99, 0.35);
}

/* Pages a hero sombre : verre teinte sombre + texte blanc tant qu'on n'a pas scrolle
   (sur fond vert fonce, le verre transparent + texte sombre serait illisible) */
.header--on-dark:not(.scrolled) {
    background: rgba(13, 30, 28, 0.25);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px rgba(0, 0, 0, 0.18);
}

.header--on-dark:not(.scrolled) .nav__link,
.header--on-dark:not(.scrolled) .nav__logo-regen,
.header--on-dark:not(.scrolled) .nav__logo-agency {
    color: #ffffff;
}

.header--on-dark:not(.scrolled) .nav__logo-img {
    filter: brightness(0) invert(1);
}

.header--on-dark:not(.scrolled) .btn--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
                inset 0 0 0 1px rgba(255, 255, 255, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.15);
}

.header--on-dark:not(.scrolled) .nav__toggle span {
    background: #ffffff;
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    outline: none;
}

.btn--white:hover {
    box-shadow: var(--shadow-lg);
}

.btn--white:focus {
    outline: none;
}

.btn--large {
    padding: 16px 32px;
    font-size: 1rem;
}


/* ============================================ */
/* 7. HERO                                     */
/* ============================================ */
.hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FDFDFD;
}

/* Bannière vidéo pleine largeur : la vidéo passe sous le header en verre,
   le texte se superpose sur la zone libre à gauche de la scène.
   La vidéo (16:9) est TOUJOURS entière (jamais rognée) : calée à droite,
   son bord gauche fondu dans un dégradé assorti à son propre fond */
.hero__banner {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    height: min(56.25vw, calc(100vh - 140px));
    min-height: 480px;
    overflow: hidden;
    /* Degrade échantillonné sur le bord gauche de la vidéo */
    background: linear-gradient(180deg, #8F9491 0%, #979893 25%, #989A9A 50%, #C2C3BA 75%, #A2A9A8 100%);
}

.hero__banner-video {
    position: absolute;
    top: 0;
    /* Decollee du bord droit pour equilibrer avec la marge du texte */
    right: clamp(0px, 3vw, 60px);
    height: 100%;
    width: auto;
    /* Fondu des deux bords (les barres s'arretent a ~90%, seules des feuilles frolent le bord) */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 140px, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 140px, #000 95%, transparent 100%);
}

.hero__banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Conteneur elargi : le texte demarre plus a gauche que le reste du site */
    max-width: clamp(1200px, 86vw, 1460px);
    padding-top: 110px;
    padding-bottom: 40px;
}

/* Titre raccourci = un cran plus gros, calibre sur la hauteur de l'animation */
@media (min-width: 1025px) {
    .hero__banner .hero__title {
        font-size: 3.5rem;
        line-height: 1.12;
    }

    .hero__banner .hero__subtitle {
        max-width: 480px;
    }
}

/* Lisibilite du texte sur le gris de la video */
.hero__banner .hero__subtitle {
    color: #454545;
}

.hero__banner .hero__badge {
    background: rgba(255, 255, 255, 0.75);
}

/* Voile lateral pleine hauteur : opaque a gauche (zone texte), il s'evanouit
   avant la scene : se lit comme l'eclairage de la video, pas comme un halo */
.hero__banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(252, 252, 251, 0.9) 0%,
        rgba(252, 252, 251, 0.62) 32%,
        rgba(252, 252, 251, 0.25) 48%,
        transparent 62%);
    pointer-events: none;
    z-index: 1;
}

/* Le degrade du logo finit trop clair pour le gris de la video :
   version verts francs (jamais noire, pour ne pas se confondre avec le texte),
   reservee au titre du hero */
.hero__banner .hero__title .text-gradient {
    background: linear-gradient(120deg, #1C8A4E 0%, #2FB963 55%, #1E9152 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .hero__banner .hero__text {
        max-width: 460px;
        text-align: left;
    }
}

/* Mobile : le texte repasse au-dessus de la vidéo (plus de superposition) */
@media (max-width: 768px) {
    .hero {
        min-height: 0;
    }

    .hero__banner {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        height: auto;
        background: none;
    }

    /* Sur mobile le texte est au-dessus de la video : pas de voile */
    .hero__banner::after {
        display: none;
    }

    .hero__banner-video {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        order: 2;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero__banner-content {
        order: 1;
        padding-top: 110px;
        padding-bottom: var(--spacing-lg);
    }

    .hero__banner .hero__text {
        max-width: 100%;
    }
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    flex: 1;
}

.hero__text {
    max-width: 580px;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
}

.hero__title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__illustration {
    position: relative;
    width: 100%;
    max-width: 845px; /* 650 + 30% */
}

.hero__image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.hero__video {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 12px;
}

/* Hero Stats */
.hero__stats {
    margin-top: auto;
    padding: var(--spacing-xl) 0;
    background: var(--color-primary);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.stat__number.counting {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__number.counted {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-white);
    background-clip: unset;
    color: var(--color-white);
}

.stat__unit {
    font-size: 1.5rem;
}

.stat__label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================ */
/* DECORATIVE PATTERNS                         */
/* ============================================ */
.pattern-dots {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.pattern-dots--light {
    background-image: radial-gradient(circle, rgba(200, 200, 220, 0.4) 2px, transparent 2px);
}

.pattern-grid {
    position: absolute;
    width: 400px;
    height: 400px;
    background-image:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-secondary-rgb), 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.pattern-grid--dark {
    background-image:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-secondary-rgb), 0.15) 1px, transparent 1px);
}

/* ============================================ */
/* 8. SERVICES                                 */
/* ============================================ */
.section--services {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.section--services::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 350px;
    height: 350px;
    background-image: radial-gradient(circle, rgba(200, 200, 230, 0.35) 3px, transparent 3px);
    background-size: 25px 25px;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 0;
}

.services__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.services__text .section__badge {
    margin-bottom: var(--spacing-md);
}

.services__text .section__title {
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.services__text .section__description {
    margin-bottom: var(--spacing-xl);
}

.services__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md) var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.services__list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.services__cta {
    display: flex;
    gap: var(--spacing-md);
}

.services__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.services__illustration {
    width: 100%;
    height: auto;
}


/* ============================================ */
/* 9. VALEUR AJOUTÉE                           */
/* ============================================ */
.section--value {
    background: #ffffff;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.section--value::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-image:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-secondary-rgb), 0.08) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
    z-index: 0;
}

.value__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--color-secondary-rgb), 0.1), rgba(var(--color-accent-rgb), 0.1));
    border-radius: var(--radius-md);
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-secondary);
}

.value-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.value-card__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}


/* ============================================ */
/* 10. EXPERTISES                              */
/* ============================================ */
.section--expertise {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.section--expertise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(var(--color-secondary-rgb), 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-secondary-rgb), 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.section--expertise .section__header {
    position: relative;
    z-index: 1;
}

.section--expertise .section__badge {
    background: rgba(var(--color-secondary-rgb), 0.2);
    color: var(--color-secondary);
}

.section--expertise .section__title {
    color: var(--color-white);
}

.expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.expertise-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285F4, #34A853);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.expertise-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.expertise-card__icon--meta {
    background: linear-gradient(135deg, #1877F2, #00C6FF);
}

.expertise-card__icon--data {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}

.expertise-card__icon--data svg {
    stroke: var(--color-white);
}

.expertise-card__icon--ecom {
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
}

.expertise-card__icon--ecom svg {
    stroke: var(--color-white);
}

.expertise-card__icon--web {
    background: linear-gradient(135deg, #F5A623, #FFD66B);
}

.expertise-card__icon--web svg {
    stroke: var(--color-white);
}

/* Chips du hero services : cliquables */
a.contact-perk {
    transition: var(--transition-normal);
}

a.contact-perk:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

/* Bande sombre packs (page services) */
.spacks {
    background: linear-gradient(165deg, var(--color-primary) 0%, #0F2A29 100%);
}

.spacks__badge {
    background: rgba(47, 185, 99, 0.18);
    color: #8ce8af;
}

.spacks .spacks__title {
    color: #ffffff;
}

.spacks .spacks__subtitle {
    color: rgba(255, 255, 255, 0.68);
}

.spacks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: var(--spacing-xl);
    align-items: stretch;
}

.spack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: var(--transition-normal);
}

.spack:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-4px);
}

.spack--star {
    border-color: rgba(245, 166, 35, 0.55);
    background: rgba(245, 166, 35, 0.08);
}

.spack__ribbon {
    position: absolute;
    top: -12px;
    right: 18px;
    background: linear-gradient(135deg, #F5A623, #F7C948);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
}

.spack__name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.12rem;
}

.spack__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.spack__cta {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .spacks__grid {
        grid-template-columns: 1fr;
    }
}

.expertise-card__icon--consent {
    background: linear-gradient(135deg, var(--color-primary), #2D5A58);
}

.expertise-card__icon--consent svg {
    stroke: var(--color-white);
}

.expertise-card__icon--formation {
    background: linear-gradient(135deg, #9B59B6, #E91E63);
}

.expertise-card__icon--formation svg {
    stroke: var(--color-white);
}

.expertise-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.expertise-card__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.expertise-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.expertise-card__link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.expertise-card__link:hover {
    color: var(--color-accent);
}

.expertise-card__link:hover svg {
    transform: translateX(4px);
}


/* ============================================ */
/* 10.5 NOS RÉALISATIONS                       */
/* ============================================ */
.section--realisations {
    background: var(--color-primary);
}

.section--realisations .section__title {
    color: var(--color-white);
}

.section--realisations .section__badge {
    background: rgba(var(--color-secondary-rgb), 0.2);
    color: var(--color-secondary);
}

.section--realisations .section__subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.realisations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* Carousel horizontal : format portrait pour captures de campagnes ads */
.realisations__carousel {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-top: var(--spacing-xl);
    padding-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
    /* Bord-à-bord avec décalage négatif pour un scroll plus immersif */
    margin-left: calc(-1 * var(--spacing-md));
    margin-right: calc(-1 * var(--spacing-md));
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.realisations__carousel::-webkit-scrollbar { height: 6px; }
.realisations__carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
}
.realisations__carousel::-webkit-scrollbar-thumb {
    background: rgba(var(--color-secondary-rgb), 0.5);
    border-radius: 3px;
}
.realisations__carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--color-secondary-rgb), 0.75);
}

.realisations__carousel .realisation-card {
    flex: 0 0 189px;
    scroll-snap-align: start;
}

.realisation-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.realisation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.realisation-card__image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    overflow: hidden;
}

/* Cards en carousel = format portrait (captures mobile 9:16 environ) */
.realisations__carousel .realisation-card__image {
    height: 396px;
}

.realisation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.95;
    transition: opacity var(--transition-normal), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.realisation-card:hover .realisation-card__image img {
    opacity: 1;
    transform: scale(1.04);
}

.realisation-card__category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.realisation-card__content {
    padding: var(--spacing-lg);
}

.realisation-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.realisation-card__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .realisations__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .realisations__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Carousel : cards plus étroites + image moins haute en mobile */
    .realisations__carousel .realisation-card {
        flex: 0 0 162px;
    }
    .realisations__carousel .realisation-card__image {
        height: 330px;
    }
}


/* ============================================ */
/* 11. COLLABORATION                           */
/* ============================================ */
.section--collab {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.section--collab::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.collab__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.collab__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collab__decoration {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(var(--color-secondary-rgb), 0.1), rgba(var(--color-accent-rgb), 0.1));
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(var(--color-secondary-rgb), 0.3);
}

.collab__image {
    /* L'image est recadrée au contenu (plus de marges blanches dans le fichier) :
       pas de ratio forcé ni d'object-fit, sinon on recadrerait la scène.
       482px = largeur de colonne (536px) réduite de 10%, demande Mathieu */
    width: 100%;
    max-width: 482px;
    border-radius: var(--radius-xl);
    display: block;
}

.collab__text .section__badge {
    margin-bottom: var(--spacing-md);
}

.collab__text .section__title {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.collab__items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.collab-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.collab-item:hover {
    box-shadow: var(--shadow-md);
    background: #1C4644;
}

.collab-item__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    flex-shrink: 0;
}

.collab-item__title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.collab-item__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}


/* ============================================ */
/* 12. TÉMOIGNAGES                             */
/* ============================================ */
.section--testimonials {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.section--testimonials::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.15) 3px, transparent 3px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 0;
}

.section--testimonials .section__header {
    position: relative;
    z-index: 1;
}

.section--testimonials .section__badge {
    background: rgba(var(--color-secondary-rgb), 0.2);
    color: var(--color-secondary);
}

.section--testimonials .section__title {
    color: var(--color-white);
}

/* Carrousel testimonials */
.testimonials-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-carousel__track {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.5s ease;
}

.testimonials-carousel__track .testimonial-card {
    flex: 0 0 calc((100% - 2 * var(--spacing-lg)) / 3);
    min-width: calc((100% - 2 * var(--spacing-lg)) / 3);
}

/* Navigation du carrousel */
.testimonials-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.testimonials-carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.testimonials-carousel__btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: scale(1.1);
}

.testimonials-carousel__btn svg {
    width: 24px;
    height: 24px;
}

.testimonials-carousel__dots {
    display: flex;
    gap: 8px;
}

.testimonials-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.testimonials-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.testimonials-carousel__dot.active {
    background: var(--color-secondary);
    transform: scale(1.2);
}

/* Ancien grid (gardé pour compatibilité) */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__content {
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Variante logo client : pastille blanche, logo entier jamais rogné */
.testimonial-card__avatar--logo {
    background: var(--color-white);
    border: 1px solid rgba(23, 60, 58, 0.12);
}

.testimonial-card__avatar--logo img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    border-radius: 0;
}

.testimonial-card__name {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: #999;
}


/* ============================================ */
/* 13. CTA FINAL                               */
/* ============================================ */
.section--cta {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), #2D5A58);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-box__title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.cta-box__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
}

.cta-box__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.cta-box__email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.cta-box__email:hover {
    color: var(--color-white);
}


/* ============================================ */
/* 14. BLOG SECTION                            */
/* ============================================ */
.section--blog {
    background: var(--color-light);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5f0 0%, #f0faf7 100%);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--gradient-logo);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card__content {
    padding: var(--spacing-lg);
}

.blog-card__date {
    font-size: 0.8125rem;
    color: rgba(var(--color-primary-rgb), 0.6);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: rgba(var(--color-primary-rgb), 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.blog-card__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.blog-card__link:hover {
    color: var(--color-accent);
}

.section__cta {
    text-align: center;
}

/* Blog Page Specific */
.section--blog-list {
    padding-top: var(--spacing-lg);
}

.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.blog-filter__btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.blog-filter__btn:hover,
.blog-filter__btn.active {
    background: var(--gradient-logo);
    border-color: transparent;
    color: var(--color-white);
}

.blog__grid--full {
    grid-template-columns: repeat(3, 1fr);
}

/* Hero Page (shared across all sub-pages) */
.hero-page {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-xl);
    text-align: center;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.hero-page__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-page__title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-page__subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.hero-page__tagline {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

/* ── Variante hero vert foncé (page Qui sommes-nous : intro + mission fusionnés) ── */
.hero-page--dark {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding-bottom: var(--spacing-2xl);
    background:
        radial-gradient(820px circle at 85% 0%, rgba(47, 185, 99, 0.22), transparent 55%),
        radial-gradient(680px circle at 0% 100%, rgba(5, 192, 138, 0.15), transparent 55%),
        linear-gradient(160deg, #1d4a47 0%, #143432 100%);
}

.hero-page--dark .container { position: relative; z-index: 1; }

/* Layout asymétrique : texte gauche / visuel droite */
.hero-page__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: var(--spacing-2xl);
}
.hero-page__text { text-align: left; }

.hero-page__glow {
    position: absolute; z-index: 0; pointer-events: none;
    top: 60px; right: 10%; width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(47, 185, 99, 0.22), transparent 65%);
}
.hero-page__dots {
    position: absolute; z-index: 0; pointer-events: none;
    bottom: 40px; left: 7%; width: 170px; height: 170px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 2px, transparent 2px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 75%);
    mask-image: radial-gradient(circle, #000 55%, transparent 75%);
}

.hero-page__badge {
    background: rgba(var(--color-secondary-rgb), 0.2);
    color: #8ce8af;
}

/* Titre blanc (override du gradient sombre de base) + accent gradient sur le span */
.hero-page--dark .hero-page__title {
    font-size: 3.1rem;
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}
/* "sommes-nous" reste insécable pour un retour propre */
.hero-page--dark .hero-page__title .text-gradient { white-space: nowrap; }

.hero-page--dark .hero-page__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Bloc mission fusionné dans le hero (aligné gauche) */
.hero-page__mission {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-page__mission-title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

.hero-page__mission-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}
.hero-page__mission-text strong { color: #8ce8af; }

/* ── Visuel hero : duo fondateurs en cercles qui se chevauchent ── */
.hero-page__visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual__photo {
    position: relative;
    width: 210px;
    height: 210px;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.hero-visual__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid #143432;
}
.hero-visual__photo--1 { transform: translate(28px, -46px); z-index: 3; }
.hero-visual__photo--2 { transform: translate(-28px, 52px); margin-left: -56px; z-index: 2; }

/* Variante trio : 2 fondateurs en haut + Océane en bas (triangle qui se chevauche) */
.hero-page__visual--trio {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding-bottom: 64px; /* réserve la place du badge sous l'illustration */
}
/* Illustration 3D de l'équipe (remplace les photos) */
.hero-page__visual--trio .hero-visual__team {
    position: relative;
    z-index: 3;
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 500px;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}
.hero-page__visual--trio .hero-visual__photo {
    position: absolute;
    width: 178px;
    height: 178px;
    margin: 0;
    transform: none;
}
.hero-page__visual--trio .hero-visual__photo--1 { top: 0; left: 16%; z-index: 3; }
.hero-page__visual--trio .hero-visual__photo--2 { top: 24px; right: 16%; z-index: 3; }
.hero-page__visual--trio .hero-visual__photo--3 {
    width: 168px; height: 168px;
    top: 150px; left: 50%; transform: translateX(-50%); z-index: 4;
}
.hero-page__visual--trio .hero-visual__blob { z-index: 0; }
.hero-page__visual--trio .hero-visual__chip { bottom: 0; left: 50%; right: auto; transform: translateX(-50%); white-space: nowrap; }

/* Petits laptops : colonne visuelle plus étroite → photos réduites pour
   garder un chevauchement léger (évite que les fondateurs se masquent) */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-page__visual--trio { min-height: 360px; }
    .hero-page__visual--trio .hero-visual__photo { width: 150px; height: 150px; }
    .hero-page__visual--trio .hero-visual__photo--1 { left: 8%; }
    .hero-page__visual--trio .hero-visual__photo--2 { right: 8%; }
    .hero-page__visual--trio .hero-visual__photo--3 { width: 138px; height: 138px; top: 126px; }
}

/* Accents décoratifs flottants */
.hero-visual__ring {
    position: absolute; z-index: 1; pointer-events: none;
    top: 8px; right: 8%;
    width: 120px; height: 120px;
    border: 2px solid rgba(var(--color-secondary-rgb), 0.4);
    border-radius: 50%;
}
.hero-visual__blob {
    position: absolute; z-index: 0; pointer-events: none;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(47, 185, 99, 0.28), transparent 65%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hero-visual__dots {
    position: absolute; z-index: 1; pointer-events: none;
    bottom: 18px; left: 6%;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 2px, transparent 2px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 75%);
    mask-image: radial-gradient(circle, #000 55%, transparent 75%);
}
.hero-visual__chip {
    position: absolute; z-index: 4;
    bottom: 26px; right: 2%;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.hero-visual__chip-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(var(--color-secondary-rgb), 0.25);
}


/* ============================================ */
/* 14b. BANNIÈRE CTA PRÉ-FOOTER               */
/* ============================================ */
.pre-footer-cta {
    background: linear-gradient(135deg, #00D97E 0%, #2FB963 30%, #1A6B4C 70%, #173C3A 100%);
    padding: var(--spacing-md) 0;
}

.pre-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.pre-footer-cta__text {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
}

.pre-footer-cta__text strong {
    color: #fff;
}

.pre-footer-cta__btn {
    background: #fff !important;
    color: var(--color-primary) !important;
    font-weight: 600;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    padding: 0.7rem 1.8rem;
    transition: all 0.3s ease;
}

.pre-footer-cta__btn:hover {
    background: rgba(255,255,255,0.9) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Variante blanche */
.pre-footer-cta--white {
    background: #ffffff;
}

.pre-footer-cta--white .pre-footer-cta__text {
    color: var(--color-primary);
}

.pre-footer-cta--white .pre-footer-cta__btn {
    background: var(--gradient-logo) !important;
    color: #fff !important;
}

.pre-footer-cta--white .pre-footer-cta__btn:hover {
    background: var(--gradient-logo-hover) !important;
}

@media (max-width: 768px) {
    .pre-footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================ */
/* 15. FOOTER                                  */
/* ============================================ */
.footer {
    background: linear-gradient(180deg, var(--color-primary) 0%, #0f2a29 100%);
    color: var(--color-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-lg);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer__logo-icon {
    width: 40px;
    height: 40px;
}

.footer__logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.footer__list li {
    margin-bottom: var(--spacing-sm);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-secondary);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

.footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-normal);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__social-link:hover {
    background: var(--color-secondary);
}

.footer__bottom {
    text-align: center;
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ============================================ */
/* 15. RESPONSIVE - TABLETTE (max 1024px)      */
/* ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__text {
        max-width: 100%;
    }
    
    .hero__title {
        font-size: 2.75rem;
    }
    
    .hero__cta {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }

    .hero__illustration {
        max-width: 350px;
        margin: 0 auto;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__content {
        grid-template-columns: 1fr;
    }
    
    .services__text {
        text-align: center;
    }
    
    .services__text .section__title {
        text-align: center;
    }
    
    .services__lists {
        max-width: 500px;
        margin: 0 auto var(--spacing-xl);
    }
    
    .services__cta {
        justify-content: center;
    }
    
    .services__visual {
        display: none;
    }
    
    .value__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .expertise__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collab__content {
        grid-template-columns: 1fr;
    }
    
    .collab__visual {
        display: none;
    }
    
    .collab__text .section__title {
        text-align: center;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Carrousel responsive tablette */
    .testimonials-carousel__track .testimonial-card {
        flex: 0 0 calc((100% - var(--spacing-lg)) / 2);
        min-width: calc((100% - var(--spacing-lg)) / 2);
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__links {
        justify-items: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}


/* ============================================ */
/* 16. RESPONSIVE - MOBILE (max 768px)         */
/* ============================================ */
@media (max-width: 768px) {
    /* Hero asymétrique → stack (texte puis visuel), photos réduites */
    .hero-page__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .hero-page--dark .hero-page__title { font-size: 2.2rem; }
    .hero-page__visual {
        min-height: 300px;
        margin-top: var(--spacing-md);
    }
    .hero-visual__photo { width: 148px; height: 148px; }
    .hero-visual__photo--1 { transform: translate(18px, -34px); }
    .hero-visual__photo--2 { transform: translate(-18px, 38px); margin-left: -36px; }
    .hero-visual__ring { width: 90px; height: 90px; }
    .hero-visual__chip { font-size: 0.74rem; padding: 6px 12px; }

    /* Trio compact en mobile */
    .hero-page__visual--trio { min-height: 340px; }
    .hero-page__visual--trio .hero-visual__photo { width: 134px; height: 134px; }
    .hero-page__visual--trio .hero-visual__photo--1 { top: 0; left: 8%; }
    .hero-page__visual--trio .hero-visual__photo--2 { top: 26px; right: 8%; }
    .hero-page__visual--trio .hero-visual__photo--3 { width: 120px; height: 120px; top: 116px; bottom: auto; }

    .header {
        top: var(--spacing-sm);
        width: calc(100% - 1rem);
        border-radius: var(--radius-md);
    }
    
    .header__container {
        padding: 0 var(--spacing-md);
    }
    
    .nav {
        height: 64px;
    }
    
    .nav__logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav__logo-text {
        font-size: 1rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
        z-index: 999;
        
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav__menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav__link {
        font-size: 1.25rem;
        padding: var(--spacing-md);
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav__item--dropdown .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: var(--spacing-sm);
    }

    .nav__dropdown-group + .nav__dropdown-group {
        border-top-color: rgba(0, 0, 0, 0.08);
    }

    .nav__dropdown-label {
        padding-left: var(--spacing-md);
    }
    
    .nav__actions {
        display: none;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero__illustration {
        max-width: 280px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.0625rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .stat__label {
        font-size: 0.8125rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .services__lists {
        grid-template-columns: 1fr;
    }
    
    .expertise__grid {
        grid-template-columns: 1fr;
    }

    .blog__grid,
    .blog__grid--full {
        grid-template-columns: 1fr;
    }

    .hero-page__title {
        font-size: 2rem;
    }

    .cta-box {
        padding: var(--spacing-xl);
    }
    
    .cta-box__title {
        font-size: 1.5rem;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}


/* ============================================ */
/* 17. RESPONSIVE - PETIT MOBILE (max 480px)   */
/* ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .btn--large {
        padding: 14px 24px;
    }
    
    .value-card,
    .expertise-card,
    .testimonial-card {
        padding: var(--spacing-lg);
    }

    /* Carrousel responsive mobile */
    .testimonials-carousel__track .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-carousel__btn {
        width: 40px;
        height: 40px;
    }

    .testimonials-carousel__btn svg {
        width: 20px;
        height: 20px;
    }

    .collab-item {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .collab-item__number {
        font-size: 1.5rem;
    }
}


/* ============================================ */
/* 18. SAFE AREAS (iPhone X+)                  */
/* ============================================ */
@supports (padding-top: env(safe-area-inset-top)) {
    .header {
        top: calc(var(--spacing-md) + env(safe-area-inset-top));
    }
    
    .nav__menu {
        padding-top: calc(var(--spacing-xl) + env(safe-area-inset-top));
        padding-bottom: calc(var(--spacing-xl) + env(safe-area-inset-bottom));
    }
    
    .footer {
        padding-bottom: calc(var(--spacing-lg) + env(safe-area-inset-bottom));
    }
}


/* ============================================ */
/* 19. TOUCH DEVICES                           */
/* ============================================ */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .value-card:active,
    .expertise-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
    
    .nav__link:active {
        opacity: 0.7;
    }
}


/* ============================================ */
/* 20. ANIMATIONS                              */
/* ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--color-secondary-rgb), 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(var(--color-secondary-rgb), 0);
    }
}


/* ============================================ */
/* 21. SERVICE HERO (from pages.css)           */
/* ============================================ */
.hero-service {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(var(--color-primary-rgb), 0.9) 100%);
    color: var(--color-white);
    text-align: center;
}

.hero-service .section__badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.hero-service__title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.hero-service__tagline {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-service__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.hero-service__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================ */
/* 22. FEATURE CARDS (from pages.css)          */
/* ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
}

.feature-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.feature-card__text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}


/* ============================================ */
/* 23. STATS GRID (from pages.css)             */
/* ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(23, 60, 58, 0.06);
    border: 1px solid rgba(47, 185, 99, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(23, 60, 58, 0.12);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(47, 185, 99, 0.1), rgba(5, 192, 138, 0.1));
    margin-bottom: 16px;
}

.stat-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-card__number {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.02em;
}


/* ============================================ */
/* 24. CONTENT & TWO-COLUMN LAYOUTS (pages.css)*/
/* ============================================ */
.section--content {
    background: var(--color-white);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    margin-bottom: var(--spacing-lg);
}

.content-block p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.two-columns--reverse {
    direction: rtl;
}

.two-columns--reverse > * {
    direction: ltr;
}

.two-columns__content h2 {
    margin-bottom: var(--spacing-lg);
}

.two-columns__content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.two-columns__visual {
    background: var(--color-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.two-columns__visual svg {
    width: 150px;
    height: 150px;
    color: var(--color-secondary);
}


/* ============================================ */
/* 25. ADVANTAGES (from pages.css)             */
/* ============================================ */
.section--advantages {
    background: var(--color-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.advantage-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-normal);
}

.advantage-card:hover {
    box-shadow: var(--shadow-md);
}

.advantage-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: rgba(var(--color-secondary-rgb), 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-secondary);
}

.advantage-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.advantage-card__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}


/* ============================================ */
/* 26. FAQ (from pages.css - shared)           */
/* ============================================ */
.section--faq {
    background: var(--color-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(47, 185, 99, 0.2);
}

.faq-item[open] {
    border-color: rgba(47, 185, 99, 0.3);
    box-shadow: 0 4px 16px rgba(47, 185, 99, 0.08);
}

.faq-item__question {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    transition: color 0.3s ease;
    gap: var(--spacing-md);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '';
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(47, 185, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232FB963' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    font-size: 0;
}

.faq-item[open] .faq-item__question::after {
    transform: rotate(180deg);
    background-color: var(--color-secondary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.faq-item__question:hover {
    color: var(--color-secondary);
}

.faq-item__answer {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    padding-left: var(--spacing-xl);
    color: #666;
    line-height: 1.8;
    font-size: 0.9rem;
}


/* ============================================ */
/* 27. CONTACT FORM (from pages.css)           */
/* ============================================ */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 400;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    accent-color: var(--color-secondary);
}


/* ============================================ */
/* 28. CONTACT INFO (from pages.css)           */
/* ============================================ */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--radius-md);
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.contact-info__content h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.contact-info__content p,
.contact-info__content a {
    color: #666;
    font-size: 0.95rem;
}

.contact-info__content a:hover {
    color: var(--color-secondary);
}


/* ============================================ */
/* 29. LEGAL PAGE (from pages.css)             */
/* ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--color-primary);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-content li {
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    list-style: disc;
}


/* ============================================ */
/* 30. TOOLS GRID (from pages.css)             */
/* ============================================ */
.tools-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    padding: var(--spacing-xl) 0;
}

.tool-item {
    text-align: center;
}

.tool-item__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.tool-item__icon svg {
    width: 40px;
    height: 40px;
}

.tool-item__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
}


/* ============================================ */
/* 31. TRAINING MODULES (from pages.css)       */
/* ============================================ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.module-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-secondary);
}

.module-card__number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.module-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.module-card__text {
    color: #666;
    font-size: 0.95rem;
}


/* ============================================ */
/* 32. SERVICES PAGE (from services.css)       */
/* ============================================ */
.section--services-grid {
    padding-top: var(--spacing-xl);
}

/* Services Poles */
.section--services-pole {
    padding: var(--spacing-2xl) 0;
}

.section--services-pole.section--alt {
    background: var(--color-light);
}

.services-pole__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.services-pole__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-pole__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.services-pole__title {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.services-pole__desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.service-card__icon--meta {
    background: linear-gradient(135deg, #1877f2, #42b72a);
}

.service-card__icon--data {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.service-card__icon--data svg {
    stroke: var(--color-white);
}

.service-card__icon--web {
    background: linear-gradient(135deg, #F5A623, #FFD66B);
}

.service-card__icon--web svg {
    stroke: var(--color-white);
}

.service-card__icon--maintenance {
    background: linear-gradient(135deg, var(--color-primary), #2D5A58);
}

.service-card__icon--maintenance svg {
    stroke: var(--color-white);
}

.service-card__icon--multi {
    background: linear-gradient(135deg, #0A66C2, #E1306C);
}

.service-card__icon--multi svg {
    stroke: var(--color-white);
}

.service-card__icon--migration {
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
}

.service-card__icon--migration svg {
    stroke: var(--color-white);
}

.service-card__icon--dashboard {
    background: linear-gradient(135deg, #4285F4, #00C6FF);
}

.service-card__icon--dashboard svg {
    stroke: var(--color-white);
}

.service-card__icon--gbp {
    background: linear-gradient(135deg, #34A853, #FBBC05);
}

.service-card__icon--gbp svg {
    stroke: var(--color-white);
}

.service-card__icon--ecom {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}

.service-card__icon--ecom svg {
    stroke: var(--color-white);
}

.service-card__icon--consent {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.service-card__icon--consent svg {
    stroke: var(--color-white);
}

.service-card__icon--formation {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.service-card__icon--formation svg {
    stroke: var(--color-white);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.service-card__text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card__link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.service-card__link:hover {
    color: var(--color-primary);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}


/* ============================================ */
/* 33. ADS DETAIL & BENEFITS (services.css)    */
/* ============================================ */
.section--ads-detail {
    background: var(--color-light);
}

.ads-detail__content {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.ads-detail__content .section__description {
    margin: var(--spacing-md) auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.benefit-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-md);
    background: rgba(var(--color-secondary-rgb), 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
}

.benefit-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.benefit-card__text {
    font-size: 0.9rem;
    color: #666;
}


/* ============================================ */
/* 34. PROCESS SECTION (from services.css)     */
/* ============================================ */
.section--process {
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.process-step {
    position: relative;
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.process-step:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.process-step__number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.process-step__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.process-step__text {
    font-size: 0.9rem;
    color: #666;
}


/* ============================================ */
/* 35. ABOUT PAGE (from about.css)             */
/* ============================================ */
.section--mission {
    background: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

.mission {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-dark);
}

.mission__text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

.section--values {
    background: var(--color-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.value-card-about {
    background: linear-gradient(160deg, #1d4a47 0%, #143432 100%);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 8px 28px rgba(20, 52, 50, 0.18);
}

.value-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(20, 52, 50, 0.3);
    border-color: rgba(var(--color-secondary-rgb), 0.5);
}

.value-card-about__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(47, 185, 99, 0.35);
}

.value-card-about__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.value-card-about__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.value-card-about__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.section--team {
    position: relative;
    overflow: hidden;
    /* Lueurs colorées coulées dans le fond (jamais coupées par le bord) + wash vert doux */
    background:
        radial-gradient(760px circle at 86% 18%, rgba(47, 185, 99, 0.13), transparent 58%),
        radial-gradient(680px circle at 6% 90%, rgba(5, 192, 138, 0.11), transparent 55%),
        linear-gradient(180deg, #eaf6f0 0%, #f3faf6 58%, #ecf6f0 100%);
}

/* ── Décor texture (dots) : 2 clusters entièrement contenus ── */
.team-decor { position: absolute; pointer-events: none; z-index: 0; }
.team-decor--dots {
    width: 180px; height: 180px;
    background-image: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.22) 2px, transparent 2px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 75%);
    mask-image: radial-gradient(circle, #000 55%, transparent 75%);
}
.team-decor--dots-tr { top: 70px; right: 40px; }
.team-decor--dots-bl { bottom: 60px; left: 36px; }

.section--team .container { position: relative; z-index: 1; }
.section--team .section__subtitle {
    max-width: 620px;
    margin: var(--spacing-md) auto 0;
    color: #5a6b66;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(var(--color-secondary-rgb), 0.12);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    box-shadow: 0 6px 24px rgba(23, 60, 58, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

/* Accent gradient en haut de chaque card */
.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(23, 60, 58, 0.14);
    border-color: rgba(var(--color-secondary-rgb), 0.3);
}

.team-card:hover::before { transform: scaleX(1); }

.team-card__avatar {
    width: 156px;
    height: 156px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(47, 185, 99, 0.3);
    margin-bottom: var(--spacing-xs);
}

.team-card__avatar span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 3px solid #fff;
}

.team-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
}

.team-card__name {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.team-card__role {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.team-card__bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.team-card__social {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.team-card__social a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 38px;
    padding: 0 16px 0 12px;
    background: rgba(var(--color-secondary-rgb), 0.08);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.2);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.team-card__social a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.team-card__social svg {
    width: 17px;
    height: 17px;
}

/* ── Bandeau crédibilité ── */
.team-creds {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    max-width: 960px;
    margin: var(--spacing-xl) auto 0;
}

.team-cred {
    flex: 1 1 240px;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.14);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-cred:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(23, 60, 58, 0.08);
}

.team-cred__num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-cred__label {
    font-size: 0.82rem;
    color: #5a6b66;
    font-weight: 600;
    line-height: 1.4;
}

/* ── Section collaboratrice : toute la section en vert foncé ── */
.section--collaborators {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(760px circle at 88% 8%, rgba(47, 185, 99, 0.2), transparent 55%),
        radial-gradient(640px circle at 2% 100%, rgba(5, 192, 138, 0.14), transparent 55%),
        linear-gradient(155deg, #1d4a47 0%, #143432 100%);
}

/* Décor texture contenu dans la section */
.collab-hero__glow {
    position: absolute; z-index: 0; pointer-events: none;
    top: 40px; right: 8%; width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(47, 185, 99, 0.22), transparent 65%);
}
.collab-hero__dots {
    position: absolute; z-index: 0; pointer-events: none;
    bottom: 50px; left: 6%; width: 160px; height: 160px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 2px, transparent 2px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 75%);
    mask-image: radial-gradient(circle, #000 55%, transparent 75%);
}

/* Conteneur de layout (transparent, plus de bloc) */
.collab-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: var(--spacing-2xl);
    max-width: 1140px;
    margin: 0 auto;
}

.collab-hero__content { position: relative; z-index: 1; }

.collab-hero__title {
    font-size: 1.9rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    white-space: nowrap;
}

.collab-hero__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.collab-hero__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}
.collab-hero__note svg { width: 16px; height: 16px; color: var(--color-secondary); }

/* Personne mise en avant */
.collab-hero__person {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.collab-hero__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    margin-bottom: var(--spacing-lg);
}
.collab-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid #143432;
}

.collab-hero__name {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.collab-hero__company {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(var(--color-secondary-rgb), 0.2);
    color: #8ce8af;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.collab-hero__role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto var(--spacing-md);
}

.collab-hero__social {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.collab-hero__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transition: var(--transition-fast);
}
.collab-hero__social a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}
.collab-hero__social svg { width: 18px; height: 18px; }


/* ============================================ */
/* 36. PAGES RESPONSIVE (from pages/services/  */
/*     about.css)                              */
/* ============================================ */
@media (max-width: 1024px) {
    .features-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .two-columns--reverse {
        direction: ltr;
    }

    .services-grid,
    .benefits-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-service__title {
        font-size: 2.5rem;
    }

    .hero-service__tagline {
        font-size: 1.25rem;
    }

    .features-grid,
    .advantages-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-pole__header {
        flex-direction: column;
        text-align: center;
    }

    .services-pole__title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: var(--spacing-lg);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-card__social {
        justify-content: center;
    }

    .team-creds {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .team-cred {
        flex: 1 1 auto;
        padding: var(--spacing-md);
    }

    .collab-hero {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .collab-hero__content { text-align: center; }
    .collab-hero__person { order: -1; }
    .collab-hero__photo { width: 168px; height: 168px; }
    .collab-hero__title { white-space: normal; font-size: 1.55rem; }

    /* Alléger la texture dots sur mobile */
    .team-decor--dots-bl { display: none; }

    .mission__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-service__title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card__number {
        font-size: 2rem;
    }

    .value-card-about {
        padding: var(--spacing-lg);
    }
}


/* ============================================ */
/* ============================================ */
/* 37. ANIMATIONS & EFFECTS                    */
/*     (from animations.css)                   */
/* ============================================ */
/* ============================================ */


/* ============================================ */
/* 37.1 PAGE LOADER                            */
/* ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.page-loader__logo {
    width: 80px;
    height: 80px;
    animation: loaderSpin 1.5s ease-in-out infinite;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

body.loading {
    overflow: hidden;
}


/* ============================================ */
/* 37.2 REGEN PARTICLES                        */
/* ============================================ */
.regen-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

.regen-particles--plant {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    height: 300%;
    overflow: visible;
    z-index: 3;
    pointer-events: none;
}

.regen-particle {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-secondary) 0%, var(--color-accent) 50%, transparent 70%);
    opacity: 0;
    animation: regenFloat 5s ease-out forwards;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--color-secondary), 0 0 20px rgba(var(--color-secondary-rgb), 0.5);
}

.regen-particles--plant .regen-particle {
    bottom: 0;
    animation: regenFloatPlant 4s ease-out forwards;
}

@keyframes regenFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 0.8; }
    50% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

@keyframes regenFloatPlant {
    0% { opacity: 0; transform: translateY(0) scale(0.3); }
    5% { opacity: 0.9; transform: translateY(-20px) scale(0.8); }
    30% { opacity: 0.8; }
    70% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-500px) scale(1.2); }
}

.healing {
    position: relative;
}

.healing::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: healingGlow 0.5s ease forwards, healingPulse 2s ease-in-out infinite 0.5s;
    filter: blur(8px);
}

@keyframes healingGlow {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 0.6; transform: scale(1); }
}

@keyframes healingPulse {
    0%, 100% { opacity: 0.4; filter: blur(8px); }
    50% { opacity: 0.7; filter: blur(12px); }
}

.btn--primary {
    position: relative;
    overflow: visible;
}

.regen-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: inherit;
    border: 2px solid var(--color-secondary);
    opacity: 0;
    pointer-events: none;
    animation: regenPulseAnim 2s ease-out infinite;
}

@keyframes regenPulseAnim {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.stat,
.stat-card {
    position: relative;
    overflow: hidden;
}

.energy-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat.revealed .energy-bar,
.stat-card.revealed .energy-bar {
    transform: scaleX(1);
}

.expertise-card__link::before {
    content: '🌱';
    position: absolute;
    left: -20px;
    opacity: 0;
    transform: scale(0) rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expertise-card__link:hover::before {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    left: -25px;
}

.expertise-card__link {
    position: relative;
}


/* ============================================ */
/* 37.3 SCROLL PROGRESS BAR                    */
/* ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    z-index: 10001;
    transition: width 0.1s linear;
}


/* ============================================ */
/* 37.4 SCROLL REVEAL ANIMATIONS               */
/* ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal--left {
    transform: translateX(-50px);
}

.reveal--left.revealed {
    transform: translateX(0);
}

.reveal--right {
    transform: translateX(50px);
}

.reveal--right.revealed {
    transform: translateX(0);
}

.reveal--scale {
    transform: scale(0.9);
}

.reveal--scale.revealed {
    transform: scale(1);
}

.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }


/* ============================================ */
/* 37.5 HERO ANIMATIONS                        */
/* ============================================ */
.hero__text > *,
.hero-page > .container > *,
.hero-service > .container > * {
    opacity: 0;
    transform: translateY(20px);
}

.hero__text > *.animate-in,
.hero-page > .container > *.animate-in,
.hero-service > .container > *.animate-in {
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.platform-icon {
    animation: float 3s ease-in-out infinite;
}

.platform-icon:nth-child(1) { animation-delay: 0s; }
.platform-icon:nth-child(2) { animation-delay: 0.5s; }
.platform-icon:nth-child(3) { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* ============================================ */
/* 37.6 BUTTON EFFECTS                         */
/* ============================================ */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn .ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(40);
        opacity: 0;
    }
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
}


/* ============================================ */
/* 37.7 CARD HOVER EFFECTS                     */
/* ============================================ */
.expertise-card,
.value-card,
.testimonial-card,
.service-card,
.feature-card,
.advantage-card,
.team-card,
.benefit-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.expertise-card::before,
.value-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.expertise-card:hover::before,
.service-card:hover::before {
    opacity: 1;
}

.expertise-card__icon,
.value-card__icon,
.service-card__icon,
.feature-card__icon {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-card:hover .expertise-card__icon,
.service-card:hover .service-card__icon,
.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card__icon--coins svg {
    overflow: visible;
}
.value-card:hover .value-card__icon--coins svg ellipse {
    animation: coinTop 0.5s ease;
}
.value-card:hover .value-card__icon--coins svg path:nth-of-type(1) {
    animation: coinStack1 0.5s ease 0.05s both;
}
.value-card:hover .value-card__icon--coins svg path:nth-of-type(2) {
    animation: coinStack2 0.5s ease 0.1s both;
}
.value-card:hover .value-card__icon--coins svg path:nth-of-type(3) {
    animation: coinStack3 0.5s ease 0.15s both;
}

@keyframes coinTop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes coinStack1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes coinStack2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}
@keyframes coinStack3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

.value-card__icon--clock svg {
    overflow: visible;
}
.value-card:hover .value-card__icon--clock .clock-hands {
    animation: clockTick 0.8s ease-in-out;
    transform-origin: 12px 12px;
}

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

.value-card__icon--shield svg {
    overflow: visible;
}
.value-card:hover .value-card__icon--shield .shield-check {
    animation: shieldCheck 0.5s ease;
}
.value-card:hover .value-card__icon--shield .shield-body {
    animation: shieldPulse 0.5s ease;
}

@keyframes shieldCheck {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--color-secondary-rgb), 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.expertise-card:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}


/* ============================================ */
/* 37.8 TEXT EFFECTS                           */
/* ============================================ */
.text-gradient {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav__link::after,
.footer__list a::after {
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight {
    position: relative;
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(var(--color-secondary-rgb), 0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight.revealed::after {
    transform: scaleX(1);
}


/* ============================================ */
/* 37.9 STATS COUNTER EFFECTS                  */
/* ============================================ */
.stat__number,
.stat-card__number {
    transition: color 0.3s ease;
}

.stat__number.counting,
.stat-card__number.counting {
    color: var(--color-accent);
}

.stat__number.counted,
.stat-card__number.counted {
    animation: countComplete 0.5s ease;
}

@keyframes countComplete {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}


/* ============================================ */
/* 37.10 HEADER TRANSITIONS                    */
/* ============================================ */
.header {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px) saturate(170%);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
}

.header.scrolled .nav {
    height: 60px;
}


/* ============================================ */
/* 37.11 FAQ ACCORDION ANIMATIONS              */
/* ============================================ */

.faq-item__answer {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================ */
/* 37.12 FORM EFFECTS                          */
/* ============================================ */
.form-group {
    position: relative;
}

.form-group label {
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--color-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(var(--color-secondary-rgb), 0.1);
}

.form-group--float label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    padding: 0 4px;
    pointer-events: none;
}

.form-group--float.focused label,
.form-group--float.filled label {
    top: 0;
    font-size: 0.75rem;
    color: var(--color-secondary);
}


/* ============================================ */
/* 37.13 DARK MODE                             */
/* ============================================ */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle__icon {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
    transition: transform 0.5s ease;
}

.theme-toggle.active .theme-toggle__icon {
    transform: rotate(180deg);
}

html.dark-mode {
    --color-dark: #f0f0f0;
    --color-light: #1a1a1a;
    --color-white: #0d0d0d;
}

html.dark-mode body {
    background-color: #0d0d0d;
    color: #e0e0e0;
}

html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4,
html.dark-mode h5,
html.dark-mode h6 {
    color: #ffffff;
}

html.dark-mode p,
html.dark-mode li,
html.dark-mode span {
    color: #d0d0d0;
}

html.dark-mode strong {
    color: var(--color-secondary);
}

html.dark-mode a {
    color: #d0d0d0;
}

html.dark-mode a:hover {
    color: var(--color-secondary);
}

html.dark-mode .header {
    background: rgba(13, 13, 13, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
}

html.dark-mode .nav__logo-regen,
html.dark-mode .nav__logo-agency {
    color: #ffffff;
}

html.dark-mode .nav__link {
    color: #e0e0e0;
}

html.dark-mode .nav__link:hover {
    color: var(--color-secondary);
}

html.dark-mode .nav__dropdown {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .nav__dropdown li a {
    color: #d0d0d0;
}

html.dark-mode .nav__dropdown li a:hover {
    background: rgba(var(--color-secondary-rgb), 0.15);
    color: var(--color-secondary);
}

html.dark-mode .header.scrolled {
    background: rgba(13, 13, 13, 0.75);
}

html.dark-mode .nav__menu {
    background: #0d0d0d;
}

html.dark-mode .nav__toggle span:nth-child(1) {
    background: #ffffff;
}

html.dark-mode .nav__toggle span:nth-child(3) {
    background: #ffffff;
}

html.dark-mode .btn--secondary {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

html.dark-mode .btn--secondary:hover {
    background: var(--color-secondary);
    color: #0d0d0d;
}

html.dark-mode .btn--white {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

html.dark-mode .btn--white:hover {
    background: #2a2a2a;
}

html.dark-mode .nav__cta--client {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

html.dark-mode .nav__cta--client:hover {
    background: var(--color-secondary);
    color: #0d0d0d;
}

html.dark-mode .hero {
    background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
}

html.dark-mode .hero__subtitle {
    color: #a0a0a0;
}

html.dark-mode .platform-icon {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

html.dark-mode .section--services {
    background: #0a0a0a;
}

html.dark-mode .section--testimonials {
    background: #0d0d0d;
}

html.dark-mode .section--expertise {
    background: #141414;
}

html.dark-mode .section--cta {
    background: #0a0a0a;
}

html.dark-mode .section--value {
    background: linear-gradient(180deg, #0a1f1d 0%, #0d2422 100%);
    border-top: 2px solid rgba(var(--color-secondary-rgb), 0.25);
    border-bottom: 2px solid rgba(var(--color-secondary-rgb), 0.25);
}

html.dark-mode .section--collab {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

html.dark-mode .section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

html.dark-mode .section__description {
    color: #a0a0a0;
}

html.dark-mode .expertise-card,
html.dark-mode .value-card,
html.dark-mode .testimonial-card,
html.dark-mode .service-card,
html.dark-mode .feature-card,
html.dark-mode .advantage-card,
html.dark-mode .benefit-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .expertise-card__title,
html.dark-mode .value-card__title,
html.dark-mode .service-card__title,
html.dark-mode .feature-card__title,
html.dark-mode .advantage-card__title,
html.dark-mode .benefit-card__title {
    color: #ffffff;
}

html.dark-mode .expertise-card__text,
html.dark-mode .value-card__text,
html.dark-mode .service-card__text,
html.dark-mode .feature-card__text,
html.dark-mode .advantage-card__text,
html.dark-mode .benefit-card__text,
html.dark-mode .testimonial-card__text {
    color: #b0b0b0;
}

html.dark-mode .testimonial-card__name {
    color: #ffffff;
}

html.dark-mode .testimonial-card__role {
    color: #888888;
}

html.dark-mode .team-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .team-card__name {
    color: #ffffff;
}

html.dark-mode .team-card__role {
    color: #a0a0a0;
}

html.dark-mode .collab-item {
    background: var(--color-primary);
}

html.dark-mode .collab-item__title {
    color: #ffffff;
}

html.dark-mode .collab-item__text {
    color: rgba(255, 255, 255, 0.78);
}

html.dark-mode .collab__decoration {
    background: linear-gradient(135deg, rgba(var(--color-secondary-rgb), 0.15), rgba(var(--color-accent-rgb), 0.15));
    border-color: rgba(var(--color-secondary-rgb), 0.4);
}

html.dark-mode .cta-box {
    background: linear-gradient(135deg, #1a2a29, #0d1a19);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
}

html.dark-mode .footer {
    background: linear-gradient(180deg, #030303 0%, #000000 100%);
    border-top: 3px solid var(--color-secondary);
}

html.dark-mode .footer__title {
    color: #ffffff;
}

html.dark-mode .footer__list a {
    color: rgba(255, 255, 255, 0.6);
}

html.dark-mode .footer__list a:hover {
    color: var(--color-secondary);
}

html.dark-mode .footer__copyright {
    color: rgba(255, 255, 255, 0.4);
}

html.dark-mode .footer__content {
    border-color: rgba(var(--color-secondary-rgb), 0.1);
}

html.dark-mode .footer__social-link {
    background: rgba(var(--color-secondary-rgb), 0.1);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}

html.dark-mode .footer__social-link:hover {
    background: var(--color-secondary);
}

html.dark-mode input,
html.dark-mode textarea,
html.dark-mode select {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

html.dark-mode input::placeholder,
html.dark-mode textarea::placeholder {
    color: #666666;
}

html.dark-mode input:focus,
html.dark-mode textarea:focus,
html.dark-mode select:focus {
    border-color: var(--color-secondary);
    background: #1f1f1f;
}

html.dark-mode label {
    color: #d0d0d0;
}

html.dark-mode .form-group.focused label {
    color: var(--color-secondary);
}

html.dark-mode .faq-item {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .faq-item[open] {
    background: #1f1f1f;
}

html.dark-mode .faq-item__question {
    color: #ffffff;
}

html.dark-mode .faq-item__answer {
    color: #b0b0b0;
}

html.dark-mode .page-loader {
    background: #0d0d0d;
}

html.dark-mode .hero-page,
html.dark-mode .hero-service {
    background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
}

html.dark-mode .hero-page__title,
html.dark-mode .hero-service__title {
    color: #ffffff;
}

html.dark-mode .hero-page__subtitle,
html.dark-mode .hero-service__subtitle {
    color: #a0a0a0;
}

html.dark-mode .services__list li {
    color: #d0d0d0;
}

html.dark-mode .legal-content h2,
html.dark-mode .legal-content h3 {
    color: #ffffff;
}

html.dark-mode .legal-content p,
html.dark-mode .legal-content li {
    color: #c0c0c0;
}

html.dark-mode .legal-content a {
    color: var(--color-secondary);
}

html.dark-mode .contact-info__item {
    color: #d0d0d0;
}

html.dark-mode .contact-info__title {
    color: #ffffff;
}

html.dark-mode .pricing-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .pricing-card__title,
html.dark-mode .pricing-card__price {
    color: #ffffff;
}

html.dark-mode .pricing-card__feature {
    color: #b0b0b0;
}

html.dark-mode .stat-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

html.dark-mode .stat-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html.dark-mode .stat-card__icon {
    background: linear-gradient(135deg, rgba(47, 185, 99, 0.15), rgba(5, 192, 138, 0.15));
}

html.dark-mode .stat-card__number {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html.dark-mode .stat-card__label {
    color: #a0a0a0;
}

html.dark-mode .breadcrumb a {
    color: #a0a0a0;
}

html.dark-mode .breadcrumb a:hover {
    color: var(--color-secondary);
}

html.dark-mode .breadcrumb__current {
    color: #ffffff;
}

html.dark-mode .process-step {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .process-step__title {
    color: #ffffff;
}

html.dark-mode .process-step__text {
    color: #b0b0b0;
}

html.dark-mode .skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
}

html.dark-mode [data-tooltip]::after {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

html.dark-mode .theme-toggle {
    background: var(--color-secondary);
}

html.dark-mode .theme-toggle__icon {
    fill: #0d0d0d;
}


/* ============================================ */
/* 37.14 LOADING STATES                        */
/* ============================================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


/* ============================================ */
/* 37.15 SMOOTH PAGE TRANSITIONS               */
/* ============================================ */
.page-transition {
    animation: pageEnter 0.5s ease-out;
}

@keyframes pageEnter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================ */
/* 37.16 TOOLTIP                               */
/* ============================================ */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* ============================================ */
/* 37.17 SCROLL SNAP                           */
/* ============================================ */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    .scroll-snap-container {
        scroll-snap-type: y proximity;
    }

    .scroll-snap-container > section {
        scroll-snap-align: start;
    }
}


/* ============================================ */
/* 37.18 REDUCED MOTION                        */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .custom-cursor,
    .custom-cursor__dot {
        display: none;
    }
}


/* ============================================ */
/* 37.19 GLITCH EFFECT                         */
/* ============================================ */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch1 2s infinite;
    color: var(--color-secondary);
    z-index: -1;
}

.glitch::after {
    animation: glitch2 2s infinite;
    color: var(--color-accent);
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(80% 0 0 0); transform: translate(2px, -2px); }
}

@keyframes glitch2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 0 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 2px); }
}


/* ============================================ */
/* 37.20 PARTICLE BACKGROUND                   */
/* ============================================ */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 24s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; animation-duration: 17s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 23s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}


/* ============================================ */
/* 40. PAGES PÔLES - COMPOSANTS PREMIUM        */
/* ============================================ */

/* --- Pole Hero --- */
.pole-hero {
    position: relative;
    padding: calc(var(--header-height) + 6rem) 0 4rem;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.pole-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pole-hero .container {
    position: relative;
    z-index: 2;
}

.pole-hero--ads {
    background: var(--color-white);
    color: var(--color-dark);
    text-align: left;
    min-height: auto;
    padding: calc(var(--header-height) + 4rem) 0 3rem;
}

.pole-hero--marketing {
    background: var(--color-white);
    color: var(--color-dark);
    text-align: left;
    min-height: auto;
    padding: calc(var(--header-height) + 4rem) 0 3rem;
}

.pole-hero--marketing .pole-hero__gradient {
    display: none;
}

.pole-hero--data {
    background: linear-gradient(135deg, #173C3A 0%, #0d1f2d 50%, #173C3A 100%);
}

.pole-hero__gradient {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg at 50% 50%, rgba(66,133,244,0.08), rgba(24,119,242,0.08), rgba(47,185,99,0.08), rgba(66,133,244,0.08));
    animation: gradientRotate 25s linear infinite;
}

.pole-hero--ads .pole-hero__gradient {
    display: none;
}

.pole-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pole-hero__data-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(47,185,99,0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: dataPulse 4s ease-in-out infinite;
}

@keyframes gradientRotate {
    to { transform: rotate(360deg); }
}

@keyframes dataPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.pole-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.pole-hero__tagline {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
}

.pole-hero__description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.pole-hero__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Pole Hero Tabs */
.pole-hero__tabs {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.pole-hero__tab {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pole-hero__tab:hover,
.pole-hero__tab.active {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border-color: rgba(255,255,255,0.3);
}

.pole-hero__tab--google:hover,
.pole-hero__tab--google.active {
    border-color: var(--color-google-blue);
    box-shadow: 0 4px 20px rgba(66,133,244,0.25);
}

.pole-hero__tab--meta:hover,
.pole-hero__tab--meta.active {
    border-color: var(--color-meta-blue);
    box-shadow: 0 4px 20px rgba(24,119,242,0.25);
}

.pole-hero__tab--formation:hover,
.pole-hero__tab--formation.active {
    border-color: var(--color-formation-orange);
    box-shadow: 0 4px 20px rgba(245,158,11,0.25);
}

.pole-hero__tab--tracking:hover,
.pole-hero__tab--tracking.active {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(5,192,138,0.25);
}

.pole-hero__tab--consent:hover,
.pole-hero__tab--consent.active {
    border-color: var(--color-consent-purple);
    box-shadow: 0 4px 20px rgba(99,102,241,0.25);
}

.pole-hero__tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pole-hero__tab-icon svg {
    width: 100%;
    height: 100%;
}

/* --- Hero Slider (Ads page) --- */
.hero-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    min-height: 420px;
}

.hero-slider__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-slider__title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark);
}

.hero-slider__line {
    display: block;
}

.hero-slider__line--dynamic {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.hero-slider__word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider__word--active {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider__line--static {
    color: var(--color-dark);
}

.hero-slider__platform {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    font-weight: 700;
}

.hero-slider__platform--active {
    opacity: 1;
    position: relative;
}

.hero-slider__description {
    font-size: 1.05rem;
    color: #666;
    max-width: 500px;
    line-height: 1.7;
}

.hero-slider__actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn--outline-white {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--color-white);
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* Dots */
.hero-slider__dots {
    display: flex;
    gap: 10px;
    margin-top: var(--spacing-sm);
}

.hero-slider__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
}

.hero-slider__dot:hover {
    border-color: rgba(0,0,0,0.2);
    background: #f5f5f5;
}

.hero-slider__dot--active {
    border-color: var(--dot-color);
    background: var(--color-white);
    color: var(--dot-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hero-slider__dot svg {
    width: 14px;
    height: 14px;
}

/* Visual / Mockups */
.hero-slider__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.hero-slider__mockup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hero-slider__mockup--active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slider__circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Mockup Card */
.mockup-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 0;
    width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    transform: rotate(2deg);
}

.mockup-card__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-card__img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-card__title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 12px 2px;
}

.mockup-card__sub {
    display: block;
    font-size: 0.7rem;
    color: #888;
    padding: 0 12px 6px;
}

.mockup-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.6rem;
    color: #aaa;
    border-top: 1px solid #f0f0f0;
}

.mockup-card__stars {
    color: #F4B400;
    letter-spacing: 1px;
}

/* Duo mockup (Meta: FB + Insta) */
.mockup-duo {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mockup-duo .mockup-card {
    width: 160px;
    transform: none;
}

.mockup-duo .mockup-card:first-child {
    transform: rotate(-3deg);
}

.mockup-duo .mockup-card:last-child {
    transform: rotate(3deg);
}

.mockup-duo .mockup-card__img {
    height: 75px;
}

/* Formes blob différentes pour chaque vignette */
/* Google : blob arrondi légèrement étiré en haut-droite */
.hero-slider__mockup[data-slide="0"] .hero-slider__circle {
    border-radius: 40% 55% 45% 50% / 55% 40% 55% 45%;
}

/* Meta : blob organique */
.hero-slider__mockup[data-slide="1"] .hero-slider__circle {
    width: 360px;
    height: 360px;
    border-radius: 60% 40% 50% 45% / 45% 55% 40% 60%;
}

/* TikTok : blob arrondi inverse */
.hero-slider__mockup[data-slide="2"] .hero-slider__circle {
    border-radius: 50% 45% 55% 40% / 40% 50% 45% 55%;
}

/* LinkedIn : blob arrondi asymétrique */
.hero-slider__mockup[data-slide="3"] .hero-slider__circle {
    border-radius: 45% 55% 40% 55% / 55% 45% 55% 40%;
}

/* Responsive hero slider */
@media (max-width: 1024px) {
    .hero-slider {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-slider__text {
        align-items: center;
    }
    .hero-slider__description {
        margin: 0 auto;
    }
    .hero-slider__actions {
        justify-content: center;
    }
    .hero-slider__dots {
        justify-content: center;
    }
    .hero-slider__visual {
        min-height: 280px;
    }
    .hero-slider__circle {
        width: 240px;
        height: 240px;
    }
    .hero-slider__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider__title {
        font-size: 2rem;
    }
    .hero-slider__visual {
        min-height: 220px;
    }
    .hero-slider__circle {
        width: 200px;
        height: 200px;
    }
    .mockup-card {
        width: 160px;
    }
}

/* --- Pole Sticky Nav --- */
.pole-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition-normal);
}

.pole-nav--shadow {
    box-shadow: var(--shadow-md);
}

.pole-nav__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    height: 60px;
}

.pole-nav__item {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: #888;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.pole-nav__item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pole-nav__item--active {
    color: var(--color-primary);
}

.pole-nav__item--active::after {
    transform: scaleX(1);
}

.pole-nav__item:hover {
    color: var(--color-primary);
}

.pole-nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pole-nav__dot--google { background: var(--color-google-blue); }
.pole-nav__dot--meta { background: var(--color-meta-blue); }
.pole-nav__dot--formation { background: var(--color-formation-orange); }
.pole-nav__dot--tracking { background: var(--color-accent); }
.pole-nav__dot--consent { background: var(--color-consent-purple); }

/* --- Pole Section --- */
.pole-section {
    padding: var(--spacing-2xl) 0;
}

.pole-section--white {
    background: var(--color-white);
}

.pole-section--light {
    background: var(--color-light);
}

.pole-section--meta-tint {
    background: linear-gradient(180deg, #f0f4ff 0%, var(--color-light) 100%);
}

.pole-section--green-tint {
    background: #ffffff;
    border-top: none;
    border-bottom: none;
}

.pole-section--accent-tint {
    background: linear-gradient(180deg, #e6f5f1 0%, #f0faf7 50%, #f8faf9 100%);
}

.pole-section--primary-soft {
    background: linear-gradient(180deg, #f0f5f4 0%, #ffffff 100%);
}

.pole-section--dark {
    background: linear-gradient(135deg, var(--color-primary), #0d2422);
    color: var(--color-white);
}

.pole-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.pole-section__header .section__title {
    margin-top: var(--spacing-md);
}

.pole-section__header .section__description {
    max-width: 650px;
    margin: var(--spacing-lg) auto 0;
    color: #666;
    line-height: 1.75;
}

/* --- Section Badges colorés --- */
.section__badge--google {
    background: rgba(66,133,244,0.1);
    color: var(--color-google-blue);
}

.section__badge--meta {
    background: rgba(24,119,242,0.1);
    color: var(--color-meta-blue);
}

.section__badge--formation {
    background: rgba(245,158,11,0.1);
    color: var(--color-formation-orange);
}

.section__badge--consent {
    background: rgba(99,102,241,0.1);
    color: var(--color-consent-purple);
}

.section__badge--tracking {
    background: rgba(5,192,138,0.1);
    color: var(--color-accent);
}

/* --- Pole Split Layout --- */
.pole-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.pole-split--reverse {
    direction: rtl;
}

.pole-split--reverse > * {
    direction: ltr;
}

/* --- Glass Cards --- */
.glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,0,0,0.1);
}

.glass-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.glass-card__icon svg {
    width: 26px;
    height: 26px;
}

.glass-card__icon--google-blue { background: rgba(66,133,244,0.12); color: #4285F4; }
.glass-card__icon--google-red { background: rgba(219,68,55,0.12); color: #DB4437; }
.glass-card__icon--google-yellow { background: rgba(244,180,0,0.12); color: #F4B400; }
.glass-card__icon--google-green { background: rgba(15,157,88,0.12); color: #0F9D58; }
.glass-card__icon--meta { background: rgba(24,119,242,0.1); color: #1877F2; }
.glass-card__icon--green { background: rgba(47,185,99,0.1); color: var(--color-secondary); }
.glass-card__icon--consent { background: rgba(99,102,241,0.1); color: #6366f1; }

.glass-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.glass-card__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.glass-card--small {
    padding: var(--spacing-md);
    text-align: center;
}

.glass-card--small strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.glass-card--small span {
    font-size: 0.85rem;
    color: #888;
}

/* --- Gradient Border Cards --- */
.gradient-border-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.gradient-border-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gradient-border-card--meta::before {
    background: linear-gradient(180deg, #1877F2, #42b72a);
}

.gradient-border-card--google::before {
    background: linear-gradient(180deg, #4285F4, #0F9D58);
}

.gradient-border-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gradient-border-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gradient-border-card__icon svg {
    width: 24px;
    height: 24px;
}

.gradient-border-card--meta .gradient-border-card__icon {
    background: rgba(24,119,242,0.1);
    color: #1877F2;
}

.gradient-border-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.gradient-border-card__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* --- Media Zone --- */
.media-zone {
    position: relative;
}

.media-zone__placeholder {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--color-light), #e8ece9);
    box-shadow: var(--shadow-lg);
}

.media-zone__placeholder--wide {
    aspect-ratio: 21 / 9;
    box-shadow: var(--shadow-xl);
}

.media-zone__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-zone__img[src=""],
.media-zone__img:not([src]) {
    display: none;
}

/* Ensure placeholder has visible background when no image */
.media-zone__placeholder:empty,
.media-zone__placeholder:has(> img[src=""]) {
    min-height: 300px;
}

.media-zone__play,
.media-zone__play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-zone__play svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    margin-left: 3px;
}

.media-zone__play:hover,
.media-zone__play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Alias for media-zone__image → media-zone__placeholder */
.media-zone__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--color-light), #e8ece9);
    box-shadow: var(--shadow-lg);
}

.media-zone__caption {
    display: block;
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Phone Mockup */
.media-zone__phone-mockup {
    width: 280px;
    height: 560px;
    border-radius: 36px;
    border: 4px solid #333;
    background: #111;
    padding: 12px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
    position: relative;
}

.media-zone__phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #111;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.media-zone__phone-screen {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    background: var(--color-light);
}

.media-zone__phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Réalisations Showcase --- */
.realisations-showcase {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.realisations-showcase__track {
    display: flex;
    gap: 20px;
    padding: var(--spacing-md) var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.realisations-showcase__track::-webkit-scrollbar {
    display: none;
}

.realisations-showcase__track:active {
    cursor: grabbing;
}

.realisation-card {
    /* 4 cartes visibles par vue (25vw) au lieu de 3 */
    min-width: min(276px, calc(25vw - 40px));
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.06);
}

.realisation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.realisation-card__browser {
    background: #f5f5f5;
}

.realisation-card__browser-bar,
.realisation-card__dots {
    height: 32px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.realisation-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.realisation-card__dot:nth-child(1),
.realisation-card__dots span:nth-child(1) { background: #ff5f57; }
.realisation-card__dot:nth-child(2),
.realisation-card__dots span:nth-child(2) { background: #febc2e; }
.realisation-card__dot:nth-child(3),
.realisation-card__dots span:nth-child(3) { background: #28c840; }

.realisation-card__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.realisation-card__screenshot {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-light);
    min-height: 180px;
}

.realisation-card__screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.realisation-card:hover .realisation-card__screenshot img {
    transform: scale(1.05);
}

.realisation-card__info {
    padding: var(--spacing-lg);
}

.realisation-card__type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    background: rgba(47,185,99,0.1);
    color: var(--color-secondary);
}

.realisation-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.realisation-card__metric {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.realisation-card__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.realisation-card__metric-label {
    font-size: 0.85rem;
    color: #888;
}

.realisations-showcase__controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.realisations-showcase__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.realisations-showcase__btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.realisations-showcase__btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.realisations-showcase__btn:hover svg {
    color: var(--color-white);
}

/* --- Features Grid Variants --- */
.features-grid--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.features-grid--single-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* --- Pillar Cards (Site & Marketing) --- */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.pillar-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pillar-card--featured {
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.pillar-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pillar-card__stripe {
    height: 4px;
    width: 100%;
}

.pillar-card__body {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
}

.pillar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(47,185,99,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.pillar-card__icon svg {
    width: 26px;
    height: 26px;
}

.pillar-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.pillar-card__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.pillar-card__list {
    list-style: none;
}

.pillar-card__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.pillar-card__list li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Formation Timeline --- */
.formation-timeline {
    position: relative;
    padding-left: 80px;
}

.formation-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-formation-orange), var(--color-formation-red));
    border-radius: 2px;
}

.formation-timeline__item {
    position: relative;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.formation-timeline__item:last-child {
    border-bottom: none;
}

.formation-timeline__number {
    position: absolute;
    left: -50px;
    top: var(--spacing-lg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-formation-orange), var(--color-formation-red));
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.formation-timeline__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.formation-timeline__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.formation-timeline__duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245,158,11,0.1);
    color: var(--color-formation-orange);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

/* --- Formation Info Cards --- */
.formation-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* --- Alert Stats (Consent Mode V2) --- */
.alert-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.alert-stat {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.alert-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.alert-stat--danger { border-top: 3px solid #ef4444; }
.alert-stat--warning { border-top: 3px solid #f59e0b; }
.alert-stat--success { border-top: 3px solid var(--color-secondary); }
.alert-stat--info { border-top: 3px solid var(--color-primary); }

.alert-stat__value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.alert-stat--danger .alert-stat__value { color: #ef4444; }
.alert-stat--warning .alert-stat__value { color: #f59e0b; }
.alert-stat--success .alert-stat__value { color: var(--color-secondary); }
.alert-stat--info .alert-stat__value { color: var(--color-primary); }

.alert-stat__label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* --- Tool Cards (Data Tracking) --- */
.tools-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.tool-card {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.tool-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(47,185,99,0.08);
    color: var(--color-secondary);
}

.tool-card__icon svg {
    width: 24px;
    height: 24px;
}

.tool-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.tool-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

/* --- Advantages Glass (on dark bg) --- */
.advantage-card--glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.advantage-card--glass:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.advantage-card--glass .advantage-card__icon {
    background: rgba(255,255,255,0.1);
    color: var(--color-accent);
}

.advantage-card--glass .advantage-card__title {
    color: var(--color-white);
}

.advantage-card--glass .advantage-card__text {
    color: rgba(255,255,255,0.7);
}

/* --- Stat Card Accents (deprecated, kept for fallback) --- */
.stat-card--accent-google,
.stat-card--accent-meta {
    border-left: none;
}

/* --- Services Checklist --- */
.services-checklist {
    list-style: none;
}

.services-checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.services-checklist li svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- FAQ Chevron (hide SVG, use ::after) --- */
.faq-item__chevron {
    display: none;
}

/* --- FAQ Origin Dots --- */
.faq-item__origin {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-right: var(--spacing-sm);
}

.faq-item__origin--google { background: var(--color-google-blue); }
.faq-item__origin--meta { background: var(--color-meta-blue); }
.faq-item__origin--formation { background: var(--color-formation-orange); }
.faq-item__origin--tracking { background: var(--color-accent); }
.faq-item__origin--consent { background: var(--color-consent-purple); }
.faq-item__origin--ecommerce { background: var(--color-secondary); }

/* --- Inventory Grid (Google networks, Meta placements) --- */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.inventory-card {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.inventory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inventory-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.inventory-card:hover::before {
    opacity: 1;
}

.inventory-card--blue::before { background: var(--color-google-blue); }
.inventory-card--green::before { background: var(--color-google-green); }
.inventory-card--yellow::before { background: var(--color-google-yellow); }
.inventory-card--red::before { background: var(--color-google-red); }

.inventory-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.inventory-card__icon svg {
    width: 24px;
    height: 24px;
}

.inventory-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.inventory-card__text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* --- Meta Campaign Types --- */
.meta-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.meta-campaigns-grid--full {
    grid-template-columns: repeat(4, 1fr);
}

.meta-campaign-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.meta-campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1877F2, #42b72a);
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meta-campaign-card:hover::before {
    opacity: 1;
}

.meta-campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.meta-campaign-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(24,119,242,0.08), rgba(66,183,42,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1877F2;
}

.meta-campaign-card__icon svg {
    width: 24px;
    height: 24px;
}

.meta-campaign-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0;
}

.meta-campaign-card__text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}


/* ============================================ */
/* 41. ADS PAGE - DUAL BLOC & COMPOSANTS       */
/* ============================================ */

/* --- Dual Expertise Bloc --- */
.dual-bloc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: stretch;
}

.dual-bloc__col {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.dual-bloc__col::before {
    display: none;
}

.dual-bloc__col:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.dual-bloc__col--google {
    border-top: 4px solid transparent;
    background:
        linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335) border-box;
}

.dual-bloc__col--meta {
    border-top: 4px solid transparent;
    background:
        linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(90deg, #1877F2, #42B72A) border-box;
}

.dual-bloc__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.dual-bloc__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dual-bloc__icon svg {
    width: 28px;
    height: 28px;
}

.dual-bloc__icon--google {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.dual-bloc__icon--google svg {
    fill: #4285F4;
}

.dual-bloc__icon--meta {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.dual-bloc__icon--meta svg {
    fill: #1877F2;
}

.dual-bloc__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.dual-bloc__description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Tags (campagnes, formats, placements) */
.dual-bloc__tags-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: var(--spacing-sm);
}

.dual-bloc__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-lg);
}

.dual-bloc__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.dual-bloc__tag svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dual-bloc__tag:hover {
    background: var(--color-white);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Google/Meta tags : seules les icônes sont colorées */
.dual-bloc__tag--google-blue,
.dual-bloc__tag--google-red,
.dual-bloc__tag--google-yellow,
.dual-bloc__tag--google-green,
.dual-bloc__tag--meta {
    color: var(--color-primary);
}

/* Grille tuiles plateformes (Meta) */
.dual-bloc__platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: auto;
    padding-top: var(--spacing-md);
}

.platform-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    transition: var(--transition-normal);
}

.platform-tile:hover .platform-tile__icon {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.platform-tile__icon {
    width: 57px;
    height: 57px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-tile__icon svg {
    width: 55%;
    height: 55%;
}

/* Facebook */
.platform-tile--facebook .platform-tile__icon {
    background: #1877F2;
}

/* Instagram */
.platform-tile--instagram .platform-tile__icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Messenger */
.platform-tile--messenger .platform-tile__icon {
    background: linear-gradient(180deg, #0099FF 0%, #A033FF 100%);
}

/* WhatsApp */
.platform-tile--whatsapp .platform-tile__icon {
    background: #25D366;
}

.platform-tile span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* Tooltips sur les tags */
.dual-bloc__tag[data-tooltip] {
    position: relative;
    cursor: default;
}

.dual-bloc__tags {
    position: relative;
    overflow: visible;
}

.dual-bloc__tag[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 10px;
    width: max-content;
    max-width: 280px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.dual-bloc__tag[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-dark);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    z-index: 100;
}

.dual-bloc__tag[data-tooltip]:hover::after,
.dual-bloc__tag[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
}

.dual-bloc__col--google .dual-bloc__tag:hover {
    border-color: rgba(66, 133, 244, 0.3);
    color: #4285F4;
}

.dual-bloc__col--meta .dual-bloc__tag:hover {
    border-color: rgba(24, 119, 242, 0.3);
    color: #1877F2;
}

/* Mini stats dans chaque colonne (legacy) */
.dual-bloc__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--radius-lg);
}

.pole-section--dark .dual-bloc__stats {
    background: rgba(255,255,255,0.08);
}

.dual-bloc__stat {
    text-align: center;
}

.dual-bloc__stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.dual-bloc__col--google .dual-bloc__stat-value {
    background: linear-gradient(135deg, #4285F4, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dual-bloc__col--meta .dual-bloc__stat-value {
    background: linear-gradient(135deg, #1877F2, #42B72A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dual-bloc__stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
    font-weight: 500;
}

/* --- Highlights (nouveau design stats) --- */
.dual-bloc__highlights {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.dual-bloc__highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s ease;
}

.dual-bloc__highlight:last-child {
    border-bottom: none;
}

.dual-bloc__highlight:hover {
    background: rgba(255,255,255,0.05);
}

.dual-bloc__highlight-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.dual-bloc__highlight-icon--green {
    background: rgba(47,185,99,0.2);
}

.dual-bloc__highlight-icon--green svg {
    stroke: #4ade80 !important;
}

.dual-bloc__highlight-icon--purple {
    background: rgba(167,139,250,0.2);
}

.dual-bloc__highlight-icon--purple svg {
    stroke: #c4b5fd !important;
}

.dual-bloc__highlight-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.dual-bloc__highlights--purple .dual-bloc__highlight-value {
    color: #fff;
}

.dual-bloc__highlight-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1px;
    font-weight: 500;
}

/* Dark mode highlights */
.pole-section--dark .dual-bloc__highlight {
    border-bottom-color: rgba(255,255,255,0.08);
}

.pole-section--dark .dual-bloc__highlight:hover {
    background: rgba(255,255,255,0.06);
}

.pole-section--dark .dual-bloc__highlight-label {
    color: rgba(255,255,255,0.6);
}

.pole-section--dark .dual-bloc__highlight-value {
    color: #fff;
}

/* Séparateur dans la colonne */
.dual-bloc__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: var(--spacing-sm) 0 var(--spacing-lg);
}

/* Badge Recommandé */
.dual-bloc__badge {
    position: absolute;
    top: -14px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    background: linear-gradient(135deg, #2FB963, #05C08A);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 3px 12px rgba(47,185,99,0.4);
    z-index: 2;
}

/* Sous-titre header */
.dual-bloc__subtitle {
    display: block;
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
    margin-top: 2px;
}

.pole-section--dark .dual-bloc__subtitle {
    color: rgba(255,255,255,0.6);
}

/* CTA en bas de colonne */
.dual-bloc__cta {
    margin-top: auto;
    padding-top: var(--spacing-lg);
}

.dual-bloc__cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 24px;
}

/* Bouton CTA bloc Création sur-mesure (vert) */
.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__cta .btn {
    background: linear-gradient(135deg, #2FB963, #05C08A) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(47,185,99,0.35) !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__cta .btn:hover {
    box-shadow: 0 6px 28px rgba(47,185,99,0.55) !important;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Bouton CTA bloc Plateformes CMS (violet) */
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__cta .btn {
    background: linear-gradient(135deg, #7C3AED, #A78BFA) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(124,58,237,0.35) !important;
}

.pole-section--dark .dual-bloc__col--platforms .dual-bloc__cta .btn:hover {
    box-shadow: 0 6px 28px rgba(124,58,237,0.55) !important;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* --- Bloc Promo Google (compact) --- */
.promo-google {
    margin-top: 0;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(66, 133, 244, 0.15);
}

.promo-google__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.promo-google__rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-google__row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 8px 12px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.promo-google__row:hover {
    box-shadow: var(--shadow-sm);
}

.promo-google__row--popular {
    border-color: var(--color-google-blue);
    background: rgba(66, 133, 244, 0.03);
}

.promo-google__badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(66, 133, 244, 0.1);
    color: var(--color-google-blue);
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-google__amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-google-blue);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 70px;
}

.promo-google__sep {
    font-size: 0.8rem;
    color: #888;
    white-space: nowrap;
}

.promo-google__disclaimer {
    font-size: 0.7rem;
    color: #aaa;
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .promo-google__sep {
        font-size: 0.7rem;
    }
    .promo-google__amount {
        font-size: 1.1rem;
        min-width: 60px;
    }
}

/* --- Formation compact --- */
.formation-compact {
    text-align: center;
}

.formation-compact__intro {
    max-width: 650px;
    margin: 0 auto var(--spacing-xl);
}

.formation-compact__intro p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.formation-compact__cards {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.formation-compact__cards .glass-card--small {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
}

/* --- Showcase réalisations amélioré --- */
.realisations-mixed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* --- Carousel réalisations --- */
.realisations-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.realisations-carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.realisations-carousel__track::-webkit-scrollbar {
    display: none;
}

.realisations-carousel .realisation-card--mini {
    flex: 0 0 276px;
    max-width: 276px;
}

/* Boutons du carrousel : la section réalisations est passée sur fond clair
   (accent-tint) après la suppression de la bande multi-plateformes */
.realisations-carousel__btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(23, 60, 58, 0.18);
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(23, 60, 58, 0.08);
}

.realisations-carousel__btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.realisations-carousel__btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .realisations-carousel .realisation-card--mini {
        flex: 0 0 190px;
        max-width: 190px;
    }
    .realisations-carousel__btn { display: none; }
}

/* --- Marquee réalisations full-width --- */
.realisations-section {
    overflow: hidden;
    padding-bottom: var(--spacing-2xl);
}

.realisations-marquee {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.realisations-marquee:active {
    cursor: grabbing;
}

.realisations-marquee__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
    will-change: transform;
}

.realisations-marquee:hover .realisations-marquee__track,
.realisations-marquee.is-dragging .realisations-marquee__track {
    animation-play-state: paused;
}

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

.marquee-card {
    flex-shrink: 0;
    width: 320px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.35s ease;
    text-decoration: none;
}

.marquee-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.marquee-card__visual {
    position: relative;
    overflow: hidden;
    height: 190px;
}

.marquee-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-card:hover .marquee-card__visual img {
    transform: scale(1.06);
}

.marquee-card__body {
    padding: 14px 18px;
}

.marquee-card__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.marquee-card__demo {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: rgba(18, 18, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.marquee-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.marquee-card__label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

@media (max-width: 768px) {
    .marquee-card { width: 270px; }
    .marquee-card__visual { height: 155px; }
}

.realisation-card--mini {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.realisation-card--mini:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.realisation-card__visual {
    position: relative;
    overflow: hidden;
    height: 336px;
    background: #f5f7fa;
}

.realisation-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.realisation-card--mini:hover .realisation-card__img {
    transform: scale(1.05);
}

.realisation-card__platform-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.realisation-card__platform-badge svg {
    width: 14px;
    height: 14px;
}

.realisation-card__platform-badge--google {
    color: #4285F4;
}

.realisation-card__platform-badge--meta {
    color: #1877F2;
}

.realisation-card__body {
    padding: 10px 14px;
}

.realisation-card__type-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.realisation-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.realisation-card__result {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.realisation-card__result-value {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.realisation-card__result-label {
    font-size: 0.7rem;
    color: #888;
}

.realisation-card__result--secondary {
    margin-top: -2px;
}

.realisation-card__result--secondary .realisation-card__result-value {
    font-size: 0.95rem;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.realisation-card__result--secondary .realisation-card__result-label {
    font-size: 0.72rem;
    color: #999;
}

/* --- Services liés / outils communs --- */
.services-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-3xl, 5rem);
    align-items: center;
}

.services-split__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.services-split__text .section__badge {
    margin: 0;
}

.services-split__desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.services-split__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(45, 106, 79, 0.06);
    border-left: 3px solid var(--color-secondary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.services-split__highlight strong {
    color: var(--color-secondary);
    font-weight: 700;
}

/* Variante fond sombre (section « On connecte tout » sur ads-sea) :
   textes eclaircis, encadre translucide, le vert accent reste lisible */
.pole-section--dark .services-split__desc {
    color: rgba(255, 255, 255, 0.75);
}

.pole-section--dark .services-split__highlight {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.pole-section--dark .services-split__highlight strong {
    color: var(--color-accent);
}

.services-split__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.linked-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.linked-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.linked-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.1);
}

.linked-service__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-light);
}

.linked-service__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-secondary);
}

.linked-service__text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.linked-service__text p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

/* --- Stats combinées (section commune) --- */
.combined-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.combined-stat {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(155deg, #00D97E 0%, #2FB963 30%, #1A6B4C 70%, #173C3A 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 28px rgba(23, 60, 58, 0.2);
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.combined-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.combined-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(23, 60, 58, 0.3);
}

.combined-stat__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: transform 0.3s ease;
}

.combined-stat:hover .combined-stat__icon {
    transform: scale(1.1);
}

.combined-stat__icon svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.combined-stat__value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

.combined-stat__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* 41.5 PRICING CARDS                          */
/* ============================================ */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    align-items: stretch;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card--popular {
    border-color: var(--color-secondary);
    border-width: 2px;
}

.pricing-card--recommended {
    background: linear-gradient(135deg, var(--color-primary), #1a4a48);
    color: #fff;
    border: none;
    box-shadow: 0 12px 40px rgba(23, 60, 58, 0.3);
}

.pricing-card--recommended:hover {
    box-shadow: 0 16px 50px rgba(23, 60, 58, 0.4);
}

.pricing-card__ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 0;
    text-align: center;
}

.pricing-card--recommended {
    padding-top: calc(var(--spacing-xl) + 28px);
}

.pricing-card__badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(45, 106, 79, 0.08);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.pricing-card--recommended .pricing-card__badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pricing-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4px;
}

.pricing-card__from {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.pricing-card--recommended .pricing-card__from {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-primary);
}

.pricing-card--recommended .pricing-card__amount {
    color: #fff;
}

.pricing-card__period {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.pricing-card--recommended .pricing-card__period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__engagement {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: var(--spacing-md);
}

.pricing-card--recommended .pricing-card__engagement {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card__setup {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #e67e22;
    padding: 8px 14px;
    background: rgba(230, 126, 34, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

.pricing-card__setup svg {
    stroke: #e67e22;
    flex-shrink: 0;
}

.pricing-card__setup--free {
    color: var(--color-secondary);
    background: rgba(45, 106, 79, 0.08);
    border: 1px solid rgba(45, 106, 79, 0.15);
    font-weight: 600;
}

.pricing-card__setup--free strong {
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.pricing-card__setup--free svg {
    stroke: var(--color-secondary);
}

.pricing-card--recommended .pricing-card__setup--free {
    background: rgba(125, 255, 186, 0.15);
    color: #fff;
    border: 1px solid rgba(125, 255, 186, 0.3);
}

.pricing-card--recommended .pricing-card__setup--free strong {
    color: #7dffba;
    font-size: 0.95rem;
}

.pricing-card--recommended .pricing-card__setup--free svg {
    stroke: #7dffba;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg);
    width: 100%;
    text-align: left;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card__features li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232d6a4f' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.pricing-card--recommended .pricing-card__features li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card--recommended .pricing-card__features li::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237dffba' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__cta {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .pricing-cards { gap: var(--spacing-md); }
    .pricing-card__amount { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card--recommended { order: -1; }
}

/* ============================================ */
/* 42. PAGES PÔLES - RESPONSIVE                */
/* ============================================ */
@media (max-width: 1024px) {
    .pole-hero__title { font-size: 2.75rem; }
    .pole-split { grid-template-columns: 1fr; gap: var(--spacing-xl); }
    .pole-split--reverse { direction: ltr; }
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .inventory-grid { grid-template-columns: repeat(2, 1fr); }
    .alert-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .realisation-card { min-width: calc(50% - 10px); }
    .pole-hero__tabs { flex-wrap: wrap; justify-content: center; }
    .pole-nav__items { gap: var(--spacing-lg); }
    .dual-bloc { gap: var(--spacing-lg); }
    .dual-bloc__col { padding: var(--spacing-lg); }
    .dual-bloc__stat-value { font-size: 1.4rem; }
    .dual-bloc__highlight-value { font-size: 0.95rem; }
    .realisations-mixed { grid-template-columns: repeat(2, 1fr); }
    .linked-services { grid-template-columns: repeat(2, 1fr); }
    .services-split { grid-template-columns: 1fr; gap: var(--spacing-xl); }
    .services-split__text { text-align: center; align-items: center; }
    .services-split__text .section__title { text-align: center !important; }
    .combined-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pole-hero { min-height: 80vh; padding-top: calc(var(--header-height) + 3rem); }
    .pole-hero__title { font-size: 2.25rem; }
    .pole-hero__tagline { font-size: 1.1rem; }
    .pole-hero__description { font-size: 1rem; }
    .pole-hero__cta { flex-direction: column; align-items: center; }
    .pole-hero__cta .btn { width: 100%; max-width: 300px; }
    .pole-hero__tabs { flex-direction: column; align-items: center; }
    .pole-hero__tab { width: 100%; max-width: 280px; justify-content: center; }
    .dual-bloc { grid-template-columns: 1fr; }
    .dual-bloc__col:hover { transform: none; }
    .dual-bloc__stats { grid-template-columns: 1fr 1fr; }
    .dual-bloc__highlight { padding: 12px 14px; }
    .realisations-mixed { grid-template-columns: 1fr; }
    .formation-compact__cards .glass-card--small { min-width: 140px; }
    .linked-services { grid-template-columns: 1fr; }
    .combined-stats { grid-template-columns: 1fr 1fr; }
    .combined-stat__value { font-size: 1.75rem; }
    .pillar-grid { grid-template-columns: 1fr; }
    .pillar-card--featured { transform: none; }
    .pillar-card--featured:hover { transform: translateY(-8px); }
    .features-grid--2col { grid-template-columns: 1fr; }
    .inventory-grid { grid-template-columns: 1fr; }
    .meta-campaigns-grid { grid-template-columns: 1fr; }
    .meta-campaigns-grid--full { grid-template-columns: repeat(2, 1fr); }
    .alert-stats-grid { grid-template-columns: 1fr; }
    .formation-timeline { padding-left: 60px; }
    .formation-timeline__number { left: -40px; width: 32px; height: 32px; font-size: 0.75rem; }
    .formation-timeline::before { left: 24px; }
    .formation-info-cards { grid-template-columns: 1fr; }
    .pole-nav__items { gap: var(--spacing-md); overflow-x: auto; justify-content: flex-start; padding: 0 var(--spacing-md); -webkit-overflow-scrolling: touch; }
    .pole-nav__item { white-space: nowrap; }
    .media-zone__phone-mockup { width: 220px; height: 440px; }
    .realisation-card { min-width: 85vw; }
    .tools-showcase { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .pole-hero__title { font-size: 1.85rem; }
    .btn--large { padding: 14px 28px; font-size: 1rem; }
    .pole-section { padding: var(--spacing-xl) 0; }
    .tools-showcase { grid-template-columns: 1fr; }
    .tool-card:last-child:nth-child(odd) { max-width: 100%; }
}

/* ============================================ */
/* SITE & MARKETING PAGE                       */
/* ============================================ */

/* --- Dual bloc en mode dark (uniquement custom-dev & platforms) --- */
.pole-section--dark .dual-bloc__col--custom-dev,
.pole-section--dark .dual-bloc__col--custom-design,
.pole-section--dark .dual-bloc__col--platforms {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.pole-section--dark .dual-bloc__col--custom-dev:hover,
.pole-section--dark .dual-bloc__col--custom-design:hover,
.pole-section--dark .dual-bloc__col--platforms:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__title,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__title,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__title {
    color: #fff !important;
    font-size: 1.65rem !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__tags-label,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__tags-label,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__tags-label {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__description,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__description,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__description {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__tag,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__tag,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__tag {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__tag svg,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__tag svg,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__tag svg {
    opacity: 1 !important;
    filter: brightness(1.3) !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__tag:hover,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__tag:hover,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__tag:hover {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__icon {
    background: rgba(47,185,99,0.25) !important;
    border: 1px solid rgba(47,185,99,0.4);
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__icon svg {
    filter: drop-shadow(0 0 6px rgba(47,185,99,0.4));
}

.pole-section--dark .dual-bloc__col--platforms .dual-bloc__icon {
    background: rgba(167,139,250,0.25) !important;
    border: 1px solid rgba(167,139,250,0.4);
}

.pole-section--dark .dual-bloc__col--platforms .dual-bloc__icon svg {
    filter: drop-shadow(0 0 6px rgba(167,139,250,0.4));
}

.pole-section--dark .dual-bloc__badge {
    background: linear-gradient(135deg, #2FB963, #05C08A);
    color: #fff;
    box-shadow: 0 3px 16px rgba(47,185,99,0.5);
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__stat-value,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__stat-value,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__stat-value {
    color: var(--color-secondary) !important;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__stat-label,
.pole-section--dark .dual-bloc__col--custom-design .dual-bloc__stat-label,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.pole-section--dark .dual-bloc__col--custom-dev,
.pole-section--dark .dual-bloc__col--custom-design {
    background:
        linear-gradient(135deg, rgba(23,60,58,0.85), rgba(15,40,38,0.9)) padding-box,
        linear-gradient(90deg, #2FB963, #05C08A, #173C3A) border-box;
}

.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__description,
.pole-section--dark .dual-bloc__col--custom-dev .dual-bloc__subtitle {
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.pole-section--dark .dual-bloc__col--custom-design {
    background:
        linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)) padding-box,
        linear-gradient(90deg, #A259FF, #2FB963) border-box;
}

.dual-bloc__col--platforms {
    border-top: 4px solid transparent;
    background:
        linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(135deg, #7C3AED, #A78BFA) border-box;
}

.pole-section--dark .dual-bloc__col--platforms {
    background:
        linear-gradient(135deg, rgba(50,25,100,0.85), rgba(35,15,75,0.9)) padding-box,
        linear-gradient(135deg, #7C3AED, #A78BFA) border-box;
}

.pole-section--dark .dual-bloc__col--platforms .dual-bloc__description,
.pole-section--dark .dual-bloc__col--platforms .dual-bloc__subtitle {
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* --- Custom dev bar color --- */
.dual-bloc__col--custom-dev {
    border-top: 4px solid transparent;
    border-image: none;
    background:
        linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(135deg, #2FB963, #05C08A) border-box;
}

.pole-section--dark .dual-bloc__col--custom-dev,
.pole-section--dark .dual-bloc__col--platforms {
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}

.dual-bloc__col--custom-design {
    border-top: 4px solid transparent;
    background:
        linear-gradient(var(--color-white), var(--color-white)) padding-box,
        linear-gradient(90deg, #A259FF, #2FB963) border-box;
}

/* --- Platforms Grid --- */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.platform-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    box-shadow: var(--shadow-lg);
}

.platform-card__icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.platform-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.platform-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light, #6b7280);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.platform-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.platform-card__features li {
    font-size: 0.85rem;
    color: var(--color-text);
    padding: 6px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-card__features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* --- Growth Marketing Grid --- */
.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.growth-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(23,60,58,0.08);
    transition: all 0.3s ease;
}

.growth-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(47,185,99,0.2);
}

.growth-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(47,185,99,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.growth-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.growth-card__text {
    font-size: 0.9rem;
    color: var(--color-text-light, #6b7280);
    line-height: 1.6;
}

/* --- Section subtitle --- */
.section__subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-text-light, #6b7280);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* --- FAQ en mode dark --- */
.pole-section--dark .faq-item {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.pole-section--dark .faq-item:hover {
    border-color: rgba(255,255,255,0.25);
}

.pole-section--dark .faq-item__question {
    color: #fff;
}

.pole-section--dark .faq-item__answer p {
    color: rgba(255,255,255,0.75);
}

.pole-section--dark .faq-item__chevron {
    color: rgba(255,255,255,0.5);
}

.pole-section--dark .faq-item[open] {
    border-color: var(--color-secondary);
}

/* --- Process Création (Site & Marketing) --- */
/* Layout 2 colonnes : timeline + illustration */
.process-creation__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

.process-creation {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 36px;
}

/* Ligne verticale background (grise) */
.process-creation__line {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 54px;
    width: 3px;
    background: rgba(47,185,99,0.12);
    border-radius: 3px;
    overflow: hidden;
}

/* Ligne qui se remplit au scroll */
.process-creation__line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #2FB963, #05C08A);
    border-radius: 3px;
    transition: height 0.1s linear;
}

.process-creation__step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: 18px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-creation__step.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger les étapes */
.process-creation__step:nth-child(2) { transition-delay: 0s; }
.process-creation__step:nth-child(3) { transition-delay: 0.08s; }
.process-creation__step:nth-child(4) { transition-delay: 0.16s; }
.process-creation__step:nth-child(5) { transition-delay: 0.24s; }
.process-creation__step:nth-child(6) { transition-delay: 0.32s; }
.process-creation__step:nth-child(7) { transition-delay: 0.4s; }
.process-creation__step:nth-child(8) { transition-delay: 0.48s; }

.process-creation__marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-creation__number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2.5px solid #2FB963;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2FB963;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(47,185,99,0.1);
}

.process-creation__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2FB963, #05C08A);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6) rotate(-10deg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(47,185,99,0.35);
}

.process-creation__icon svg {
    stroke: #fff !important;
    width: 20px;
    height: 20px;
}

/* Step actif au scroll : le numéro se transforme en icône */
.process-creation__step--active .process-creation__number {
    background: linear-gradient(135deg, #2FB963, #05C08A);
    color: #fff;
    border-color: #2FB963;
    box-shadow: 0 4px 16px rgba(47,185,99,0.35);
    transform: scale(1.08);
}

.process-creation__step--active .process-creation__title {
    color: #2FB963;
}

.process-creation__step:hover .process-creation__number {
    opacity: 0;
    transform: scale(0.6) rotate(10deg);
}

.process-creation__step:hover .process-creation__icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.process-creation__step:hover .process-creation__content {
    transform: translateX(4px);
}

.process-creation__content {
    padding-top: 4px;
    transition: transform 0.3s ease;
}

.process-creation__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.process-creation__step:hover .process-creation__title {
    color: #2FB963;
}

.process-creation__text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
    max-width: 520px;
}

/* Bloc engagement */
.process-creation__promise {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-xl);
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.process-creation__promise::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47,185,99,0.15), transparent 70%);
    pointer-events: none;
}

.process-creation__promise-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(47,185,99,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.process-creation__promise-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    z-index: 1;
    position: relative;
}

.process-creation__promise-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    z-index: 1;
    position: relative;
}

/* ==========================================
   PROCESS VISUAL : Illustration animée sticky
   ========================================== */
.process-creation__visual {
    position: sticky;
    top: 120px;
    align-self: start;
}

.process-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Browser mockup */
.process-visual__browser {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.8s ease;
}

/* Shadow évolue avec la phase */
.process-visual[data-phase="3"] .process-visual__browser {
    box-shadow: 0 20px 60px rgba(26,26,46,0.15), 0 4px 20px rgba(0,0,0,0.06);
}
.process-visual[data-phase="4"] .process-visual__browser {
    box-shadow: 0 20px 60px rgba(47,185,99,0.12), 0 4px 20px rgba(47,185,99,0.06);
    border-color: rgba(47,185,99,0.15);
}

.process-visual__topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* Progress bar dans la topbar */
.process-visual__topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #2FB963, #05C08A);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}
.process-visual[data-phase="1"] .process-visual__topbar::after { width: 15%; }
.process-visual[data-phase="2"] .process-visual__topbar::after { width: 45%; }
.process-visual[data-phase="3"] .process-visual__topbar::after { width: 75%; }
.process-visual[data-phase="4"] .process-visual__topbar::after { width: 100%; }

.process-visual__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.process-visual__dot--red { background: #ff5f57; }
.process-visual__dot--yellow { background: #ffbd2e; }
.process-visual__dot--green { background: #28c840; }

.process-visual__url {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    margin-left: 8px;
    font-size: 0.72rem;
    color: #888;
    border: 1px solid rgba(0,0,0,0.06);
}

.process-visual__screen {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #fafafa;
}

/* Layers : toutes superposées */
.process-visual__layer {
    position: absolute;
    inset: 0;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(12px) scale(0.97);
    will-change: opacity, transform;
}

.process-visual__layer--wireframe {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Wireframe elements */
.process-visual__wire-nav {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 14px;
}

.process-visual__wire-hero {
    height: 60px;
    background: linear-gradient(135deg, #eee, #e5e5e5);
    border-radius: 8px;
    margin-bottom: 14px;
    animation: pulse-wire 2s ease-in-out infinite;
}

.process-visual__wire-cols {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.process-visual__wire-block {
    flex: 1;
    height: 50px;
    background: #eee;
    border-radius: 6px;
    animation: pulse-wire 2s ease-in-out infinite;
}

.process-visual__wire-block:nth-child(2) { animation-delay: 0.3s; }
.process-visual__wire-block:nth-child(3) { animation-delay: 0.6s; }

.process-visual__wire-text {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    margin-bottom: 8px;
}

.process-visual__wire-text--short {
    width: 60%;
}

@keyframes pulse-wire {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Design layer */
.process-visual__design-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.process-visual__design-logo {
    width: 30px;
    height: 10px;
    background: #173C3A;
    border-radius: 3px;
}

.process-visual__design-links {
    display: flex;
    gap: 8px;
}

.process-visual__design-links span {
    width: 28px;
    height: 6px;
    background: #173C3A;
    border-radius: 3px;
    opacity: 0.5;
}

.process-visual__design-hero {
    background: linear-gradient(135deg, #173C3A, #1a4a47);
    border-radius: 10px;
    padding: 20px 16px;
    margin-bottom: 14px;
}

.process-visual__design-title {
    height: 10px;
    width: 70%;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 8px;
}

.process-visual__design-subtitle {
    height: 6px;
    width: 85%;
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
    margin-bottom: 12px;
}

.process-visual__design-btn {
    height: 20px;
    width: 80px;
    background: #2FB963;
    border-radius: 6px;
}

.process-visual__design-cards {
    display: flex;
    gap: 8px;
}

.process-visual__design-card {
    flex: 1;
    height: 45px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(47,185,99,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger des design cards */
.process-visual__layer--design.active .process-visual__design-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.process-visual__layer--design.active .process-visual__design-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.process-visual__layer--design.active .process-visual__design-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* Design hero slide-in */
.process-visual__design-hero {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.process-visual__layer--design.active .process-visual__design-hero {
    opacity: 1;
    transform: translateY(0);
}

/* Design btn pulse */
.process-visual__layer--design.active .process-visual__design-btn {
    animation: btn-pulse 2s ease-in-out infinite 0.8s;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(47,185,99,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(47,185,99,0); }
}

/* Code layer */
.process-visual__layer--code {
    background: #1a1a2e;
    padding: 20px;
}

/* Numéros de ligne */
.process-visual__layer--code::before {
    content: '1\A2\A3\A4\A5\A6\A7';
    white-space: pre;
    position: absolute;
    left: 8px;
    top: 18px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.55rem;
    line-height: 1.95;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
}

.process-visual__code-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 18px;
    position: relative;
}

.process-visual__code-line {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.65rem;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 2px 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.process-visual__layer--code.active .process-visual__code-line:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.process-visual__layer--code.active .process-visual__code-line:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.process-visual__layer--code.active .process-visual__code-line:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.55s; }
.process-visual__layer--code.active .process-visual__code-line:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.75s; }
.process-visual__layer--code.active .process-visual__code-line:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.95s; }

/* Curseur blinking */
.process-visual__code-lines::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 14px;
    background: #2FB963;
    border-radius: 1px;
    opacity: 0;
    animation: none;
    margin-top: 4px;
}

.process-visual__layer--code.active .process-visual__code-lines::after {
    opacity: 1;
    animation: blink-caret 0.8s step-end infinite 1.2s;
}

.c-tag { color: #ff6b6b; }
.c-attr { color: #69db7c; }
.c-val { color: #ffd43b; }
.c-text { color: #e0e0e0; }
.c-prop { color: #74c0fc; }

@keyframes blink-caret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Live layer */
.process-visual__layer--live {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47,185,99,0.05), rgba(5,192,138,0.08));
}

.process-visual__live-check {
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Glow halo derrière le check */
.process-visual__live-check::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,185,99,0.2) 0%, transparent 70%);
    opacity: 0;
    animation: none;
}

.process-visual__layer--live.active .process-visual__live-check {
    transform: scale(1);
    animation: check-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-visual__layer--live.active .process-visual__live-check::before {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite 0.6s;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 0; }
}

.process-visual__live-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #173C3A;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}

.process-visual__layer--live.active .process-visual__live-text {
    opacity: 1;
}

.process-visual__live-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}

.process-visual__layer--live.active .process-visual__live-stats {
    opacity: 1;
}

.process-visual__live-stat {
    text-align: center;
    background: rgba(47,185,99,0.06);
    border-radius: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(47,185,99,0.12);
    transform: translateY(6px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-visual__layer--live.active .process-visual__live-stat:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.process-visual__layer--live.active .process-visual__live-stat:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

.process-visual__live-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2FB963;
    line-height: 1;
}

.process-visual__live-stat-label {
    font-size: 0.65rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

@keyframes check-pop {
    0% { transform: scale(0) rotate(-20deg); }
    60% { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Floating icons */
.process-visual__float {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.process-visual__float--maquette {
    top: 20%;
    right: -18px;
    animation: float-y 3s ease-in-out infinite;
}

.process-visual__float--code {
    bottom: 30%;
    left: -18px;
    animation: float-y 3s ease-in-out infinite 1s;
}

.process-visual__float--rocket {
    bottom: 8%;
    right: -10px;
    animation: float-y 3s ease-in-out infinite 2s;
}

/* Show floats based on phase */
.process-visual[data-phase="2"] .process-visual__float--maquette,
.process-visual[data-phase="3"] .process-visual__float--maquette { opacity: 1; }

.process-visual[data-phase="3"] .process-visual__float--code,
.process-visual[data-phase="4"] .process-visual__float--code { opacity: 1; }

.process-visual[data-phase="4"] .process-visual__float--rocket { opacity: 1; }

@keyframes float-y {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Show active layers based on data-phase */
.process-visual[data-phase="1"] .process-visual__layer--wireframe { opacity: 1; transform: translateY(0) scale(1); }

.process-visual[data-phase="2"] .process-visual__layer--wireframe { opacity: 0; transform: translateY(-8px) scale(0.97); }
.process-visual[data-phase="2"] .process-visual__layer--design { opacity: 1; transform: translateY(0) scale(1); }

.process-visual[data-phase="3"] .process-visual__layer--design { opacity: 0; transform: translateY(-8px) scale(0.97); }
.process-visual[data-phase="3"] .process-visual__layer--code { opacity: 1; transform: translateY(0) scale(1); }

.process-visual[data-phase="4"] .process-visual__layer--code { opacity: 0; transform: translateY(-8px) scale(0.97); }
.process-visual[data-phase="4"] .process-visual__layer--live { opacity: 1; transform: translateY(0) scale(1); }
.process-visual[data-phase="4"] .process-visual__live-check { transform: scale(1); }
.process-visual[data-phase="4"] .process-visual__live-text { opacity: 1; }
.process-visual[data-phase="4"] .process-visual__live-stats { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
    .process-creation__layout {
        grid-template-columns: 1fr;
    }
    .process-creation__visual {
        position: relative;
        top: 0;
        order: -1;
        margin-bottom: var(--spacing-lg);
    }
    .process-visual { max-width: 320px; }
    .process-visual__screen { height: 220px; }
}

@media (max-width: 768px) {
    .process-creation { padding-left: 0; }
    .process-creation__line { left: 19px; }
    .process-creation__number { width: 38px; height: 38px; font-size: 0.75rem; }
    .process-creation__icon { width: 38px; height: 38px; }
    .process-creation__step { gap: var(--spacing-md); padding: 12px 0; }
    .process-creation__title { font-size: 1rem; }
    .process-creation__text { font-size: 0.85rem; }
    .process-creation__promise { flex-direction: column; align-items: center; text-align: center; padding: var(--spacing-lg); }
}

/* --- Responsive Site & Marketing --- */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .growth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .growth-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================== */
/*  DATA & TRACKING PAGE : SPECIFIC STYLES        */
/* ============================================== */

/* --- Dual-Bloc Variants: Tracking & Consent --- */
.dual-bloc__col--tracking {
    border-color: rgba(5, 192, 138, 0.3);
    background: linear-gradient(135deg, rgba(5, 192, 138, 0.03), rgba(47, 185, 99, 0.05));
}
.dual-bloc__col--tracking:hover {
    border-color: var(--color-accent);
}

.dual-bloc__col--consent {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(139, 92, 246, 0.05));
}
.dual-bloc__col--consent:hover {
    border-color: var(--color-consent-purple);
}

.dual-bloc__tag--tracking {
    border-color: rgba(5, 192, 138, 0.25);
    color: var(--color-accent);
}
.dual-bloc__tag--tracking svg {
    stroke: var(--color-accent);
}
.dual-bloc__col--tracking .dual-bloc__tag:hover {
    background: rgba(5, 192, 138, 0.1);
    border-color: var(--color-accent);
}

.dual-bloc__tag--consent {
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--color-consent-purple);
}
.dual-bloc__tag--consent svg {
    stroke: var(--color-consent-purple);
}
.dual-bloc__col--consent .dual-bloc__tag:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--color-consent-purple);
}

.dual-bloc__col--tracking .dual-bloc__stat-value {
    color: var(--color-accent);
}
.dual-bloc__col--consent .dual-bloc__stat-value {
    color: var(--color-consent-purple);
}

.dual-bloc__col--tracking .dual-bloc__highlight::before {
    background: var(--color-accent);
}
.dual-bloc__col--consent .dual-bloc__highlight::before {
    background: var(--color-consent-purple);
}

.dual-bloc__icon--tracking {
    background: linear-gradient(135deg, rgba(5, 192, 138, 0.15), rgba(47, 185, 99, 0.25));
}
.dual-bloc__icon--consent {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.25));
}

/* --- Consent Section V2 (Dark elegant) --- */
/* La section Consent vit sur fond clair : le duel Sans/Avec est pose dans une
   grande carte sombre a ruban ambre (recette du bandeau packs) */
.consent-section-v2 {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.consent-band {
    position: relative;
    background: linear-gradient(160deg, #0f1f1e 0%, #173C3A 45%, #14453f 100%);
    border-radius: 24px;
    padding: 56px 48px 48px;
    box-shadow: 0 30px 80px rgba(23, 60, 58, 0.35);
}

.consent-band__ribbon {
    position: absolute;
    top: -16px;
    left: 42px;
    transform: rotate(-2deg);
    background: linear-gradient(90deg, #F5A623, #F7C948);
    color: #4a3200;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(245, 166, 35, 0.35);
    z-index: 3;
}

.consent-band__dots {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 120px;
    height: 90px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.consent-section-v2__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.consent-section-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 18px;
    background: rgba(245, 166, 35, 0.16);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: var(--radius-full);
    color: #F7C948;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.consent-section-v2__badge svg {
    width: 16px;
    height: 16px;
}

.consent-section-v2__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.consent-section-v2__title span {
    color: #F7C948;
}

.consent-section-v2__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Split image / texte dans le bandeau sombre */
.consent-band__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.consent-band__visual {
    text-align: center;
}

.consent-band__visual img {
    max-height: 460px;
    max-width: 100%;
    width: auto;
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.45));
    margin-bottom: -110px;
}

.consent-band__content .consent-section-v2__badge {
    margin-bottom: 1.2rem;
}

.consent-band__content .consent-section-v2__title {
    margin-bottom: 0.9rem;
}

.consent-band__content .consent-section-v2__subtitle {
    margin: 0 0 1.6rem;
    max-width: none;
}

.consent-gains {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-gains li {
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

.consent-gains li strong {
    color: var(--color-white);
}

.consent-gains li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2FB963, #05C08A);
}

.consent-gains li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.consent-warning {
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.12);
    border-left: 3px solid #ef4444;
    border-radius: 0 10px 10px 0;
    color: #fecaca;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.7rem;
}

/* Responsive Consent Section V2 */
@media (max-width: 900px) {
    .consent-band__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .consent-band__visual {
        order: 2;
    }

    .consent-band__visual img {
        max-height: 300px;
        margin-bottom: -80px;
    }

    .consent-band__content {
        order: 1;
    }
}

/* --- Tracking Ecosystem Grid --- */
.tracking-ecosystem {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tracking-tool {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 192, 138, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: default;
}
.tracking-tool:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tracking-tool__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 192, 138, 0.1), rgba(47, 185, 99, 0.15));
    border-radius: var(--radius-md);
}
.tracking-tool__icon svg {
    width: 32px;
    height: 32px;
}

.tracking-tool__name {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-dark);
}

/* Tooltip for tracking tools */
.tracking-tool[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--color-dark);
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    border-radius: 8px;
    white-space: normal;
    width: max-content;
    max-width: 250px;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    animation: fadeIn 0.2s ease;
}

/* --- Data Services Grid --- */
.data-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.data-service-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}
.data-service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    background: rgba(5, 192, 138, 0.08);
}

.data-service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: var(--radius-md);
}
.data-service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.data-service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.data-service-card__text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* --- Responsive: Data-Tracking components --- */
@media (max-width: 1024px) {
    .tracking-ecosystem {
        grid-template-columns: repeat(3, 1fr);
    }
    .data-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .consent-comparison {
        grid-template-columns: 1fr;
    }
    .tracking-ecosystem {
        grid-template-columns: repeat(2, 1fr);
    }
    .data-services-grid {
        grid-template-columns: 1fr;
    }
    .consent-deadline {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tracking-ecosystem {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* === DATA TRACKING V2 - Hero & Components === */
/* ============================================ */

/* --- Hero Data V2 (Dashboard mockup) --- */
.hero-data-v2 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background: linear-gradient(160deg, #0f1f1e 0%, #173C3A 40%, #1a3d3b 100%);
    overflow: hidden;
}

.hero-data-v2__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-data-v2__particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(5, 192, 138, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-data-v2__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-data-v2__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: -200px;
    right: 10%;
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-data-v2__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--color-consent-purple);
    bottom: -150px;
    left: 5%;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-data-v2__content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-data-v2__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-data-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(5, 192, 138, 0.15);
    border: 1px solid rgba(5, 192, 138, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.hero-data-v2__badge svg {
    width: 16px;
    height: 16px;
}

.hero-data-v2__title {
    font-size: clamp(2.1rem, 3.4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient--purple {
    background: linear-gradient(135deg, var(--color-consent-purple), var(--color-consent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-data-v2__description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
}

.hero-data-v2__actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-data-v2__actions .btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-data-v2__actions .btn--primary svg {
    transition: transform 0.3s ease;
}

.hero-data-v2__actions .btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--ghost {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Dashboard Mockup */
.hero-data-v2__visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(-2deg) rotateX(1deg);
}

.dashboard-mockup__browser {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dashboard-mockup__topbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-mockup__dots {
    display: flex;
    gap: 6px;
}

.dashboard-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-mockup__dots span:nth-child(1) { background: #ff5f57; }
.dashboard-mockup__dots span:nth-child(2) { background: #febc2e; }
.dashboard-mockup__dots span:nth-child(3) { background: #28c840; }

.dashboard-mockup__url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.dashboard-mockup__url svg {
    color: #28c840;
}

.dashboard-mockup__screen {
    display: grid;
    grid-template-columns: 50px 1fr;
    min-height: 280px;
}

.dashboard-mockup__sidebar {
    padding: 1rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Pastille logo Regen en tete de sidebar : la fenetre represente l'espace client */
.dashboard-mockup__logo {
    width: 100%;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.dashboard-mockup__nav-item {
    width: 100%;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dashboard-mockup__nav-item--active {
    background: var(--color-accent);
}

.dashboard-mockup__main {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dashboard-mockup__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.dashboard-mockup__stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dashboard-mockup__stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.dashboard-mockup__stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-mockup__stat-trend {
    font-size: 0.7rem;
    font-weight: 600;
}

.dashboard-mockup__stat-trend--up {
    color: var(--color-accent);
}

.dashboard-mockup__chart {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-end;
}

.dashboard-mockup__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
    height: 100px;
}

.dashboard-mockup__bar {
    flex: 1;
    height: var(--height);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

.dashboard-mockup__bar--accent {
    background: linear-gradient(180deg, var(--color-accent), var(--color-secondary));
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Floating badges */
.dashboard-mockup__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.dashboard-mockup__float svg {
    width: 18px;
    height: 18px;
}

.dashboard-mockup__float--gtm {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.dashboard-mockup__float--gtm svg {
    color: #4285F4;
}

.dashboard-mockup__float--ga4 {
    top: 55%;
    right: -50px;
    animation-delay: 0.5s;
}

.dashboard-mockup__float--ga4 svg {
    color: #F9AB00;
}

.dashboard-mockup__float--rgpd {
    bottom: 10%;
    left: -30px;
    animation-delay: 1s;
}

.dashboard-mockup__float--rgpd svg {
    color: var(--color-consent-purple);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Services Explorer (Grid + Panel) --- */
.services-explorer {
    background: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

.services-explorer__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.services-explorer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: sticky;
    top: 120px;
}

.services-explorer__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--color-light);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.services-explorer__item:hover {
    border-color: rgba(5, 192, 138, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.services-explorer__item.active {
    border-color: var(--color-accent);
    background: rgba(5, 192, 138, 0.08);
}

.services-explorer__item--purple.active {
    border-color: var(--color-consent-purple);
    background: rgba(99, 102, 241, 0.08);
}

.services-explorer__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: var(--radius-md);
    color: white;
}

.services-explorer__item--purple .services-explorer__icon {
    background: linear-gradient(135deg, var(--color-consent-purple), var(--color-consent-violet));
}

.services-explorer__icon svg {
    width: 24px;
    height: 24px;
}

.services-explorer__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
}

/* Panel de détails */
.services-explorer__details {
    position: relative;
    min-height: 400px;
}

.services-explorer__panel {
    display: none;
    padding: 2.5rem;
    background: var(--color-light);
    border-radius: var(--radius-xl);
    animation: fadeInPanel 0.4s ease;
}

.services-explorer__panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.services-explorer__panel-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.services-explorer__panel-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: var(--radius-md);
    color: white;
}

.services-explorer__panel-icon--purple {
    background: linear-gradient(135deg, var(--color-consent-purple), var(--color-consent-violet));
}

.services-explorer__panel-icon svg {
    width: 28px;
    height: 28px;
}

.services-explorer__panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.services-explorer__panel-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.services-explorer__panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.services-explorer__panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.services-explorer__panel-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    margin-top: 2px;
}

.services-explorer__panel--purple .services-explorer__panel-list li svg {
    color: var(--color-consent-purple);
}

/* Responsive Services Explorer */
@media (max-width: 1024px) {
    .services-explorer__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-explorer__grid {
        position: static;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }

    .services-explorer__item {
        padding: 1rem 0.5rem;
        min-width: auto;
    }

    .services-explorer__icon {
        width: 40px;
        height: 40px;
    }

    .services-explorer__icon svg {
        width: 20px;
        height: 20px;
    }

    .services-explorer__label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .services-explorer__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-explorer__panel {
        padding: 1.5rem;
    }

    .services-explorer__panel-header {
        flex-direction: column;
        text-align: center;
    }

    .services-explorer__panel-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .services-explorer__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .services-explorer__item {
        padding: 0.75rem 0.25rem;
    }

    .services-explorer__label {
        font-size: 0.65rem;
    }
}

/* --- Process Simple (horizontal) --- */
.process-simple {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.process-simple__step {
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid rgba(5, 192, 138, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.process-simple__step:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.process-simple__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 192, 138, 0.1), rgba(47, 185, 99, 0.15));
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.process-simple__number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.process-simple__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.process-simple__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666;
}

.process-simple__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    color: var(--color-accent);
    opacity: 0.5;
}

.process-simple__promise {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(5, 192, 138, 0.08);
    border: 1px solid rgba(5, 192, 138, 0.2);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-simple__promise-icon {
    flex-shrink: 0;
}

.process-simple__promise-text {
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.6;
}

/* Light section variant */
.pole-section--light {
    background: var(--color-light);
}

/* --- Responsive: Data Tracking V2 --- */
@media (max-width: 1024px) {
    .hero-data {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-data__description {
        margin: 0 auto;
    }

    .hero-data__cta {
        justify-content: center;
    }

    .data-flow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-tabs__card-list {
        grid-template-columns: 1fr;
    }

    .process-simple {
        flex-wrap: wrap;
    }

    .process-simple__connector {
        display: none;
    }

    .process-simple__step {
        max-width: 45%;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-data__title {
        font-size: 2.2rem;
    }

    .data-flow__step {
        min-width: 80px;
        padding: 1rem;
    }

    .data-flow__arrow {
        transform: rotate(90deg);
    }

    .services-tabs__nav {
        gap: 0.5rem;
    }

    .services-tabs__btn {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .services-tabs__card {
        padding: 2rem 1.5rem;
    }

    .services-tabs__card-header {
        flex-direction: column;
        text-align: center;
    }

    .services-tabs__card-title {
        font-size: 1.4rem;
    }

    .process-simple__step {
        max-width: 100%;
    }

    .process-simple__promise {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .data-flow {
        flex-direction: column;
    }

    .data-flow__arrow {
        transform: rotate(90deg);
    }

    .services-tabs__btn span:last-child {
        display: none;
    }
}

/* ============================================ */
/* 20. PACKS ACQUISITION (page Publicité)       */
/*     Bandeau feature asymétrique + 2 minis    */
/* ============================================ */
.packs-feature { position: relative; }
.packs-feature__band {
    position: relative;
    background: linear-gradient(120deg, #173C3A 0%, #0d2422 100%);
    border-radius: 24px;
    padding: 52px 56px;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 44px;
    align-items: center;
    box-shadow: 0 24px 60px rgba(13, 36, 34, 0.32);
}
.packs-feature__ribbon {
    position: absolute; top: -16px; left: 44px;
    background: linear-gradient(90deg, #F5A623, #F7C948);
    color: #173C3A; font-weight: 800; font-size: 0.78rem;
    padding: 7px 18px; border-radius: 40px;
    transform: rotate(-2deg);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
    letter-spacing: 0.02em;
}
.packs-feature__circle {
    position: absolute; top: -34px; right: 60px;
    width: 110px; height: 110px; border-radius: 50%;
    border: 2px solid rgba(47, 185, 99, 0.35);
    pointer-events: none;
}
.packs-feature__dots {
    position: absolute; bottom: 26px; right: 34%;
    width: 110px; height: 90px; pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.16) 2px, transparent 2px);
    background-size: 18px 18px;
}
.packs-feature__label {
    color: var(--color-secondary); font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.packs-feature__name { color: #fff; font-size: 2rem; font-weight: 700; line-height: 1.15; margin-bottom: 12px; }
.packs-feature__desc { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.6; margin-bottom: 22px; max-width: 46ch; }
.packs-feature__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.packs-feature__chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff; font-size: 0.8rem; font-weight: 600;
    padding: 8px 14px; border-radius: 40px;
}
.packs-feature__chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--color-secondary); flex-shrink: 0; }
.packs-feature__offer { text-align: center; position: relative; }
.packs-feature__from { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; }
.packs-feature__amount {
    display: block; font-size: 3.6rem; font-weight: 800; line-height: 1.05;
    background: linear-gradient(90deg, #2FB963, #05C08A);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.packs-feature__period { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.packs-feature__note { display: block; color: rgba(255,255,255,0.5); font-size: 0.74rem; margin-top: 14px; line-height: 1.5; }

.packs-minis { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 22px; }
.pack-mini {
    position: relative; background: #fff;
    border: 1.5px solid #e2ede6; border-radius: 18px;
    padding: 26px 28px 26px 32px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.pack-mini::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
}
.pack-mini:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(23, 60, 58, 0.12); }
.pack-mini__name { font-weight: 700; font-size: 1.06rem; color: var(--color-primary); margin-bottom: 5px; }
.pack-mini__desc { font-size: 0.82rem; color: #6b7280; line-height: 1.55; }
.pack-mini__price { text-align: right; flex-shrink: 0; }
.pack-mini__amount { display: block; font-size: 1.7rem; font-weight: 800; color: var(--color-primary); white-space: nowrap; }
.pack-mini__period { display: block; font-size: 0.7rem; color: #9ca3af; font-weight: 700; }
.pack-mini__link { display: inline-block; margin-top: 6px; font-size: 0.8rem; font-weight: 700; color: var(--color-secondary); text-decoration: none; }
.pack-mini__link:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .packs-feature__band { grid-template-columns: 1fr; padding: 44px 30px 36px; gap: 26px; }
    .packs-feature__circle { display: none; }
    .packs-minis { grid-template-columns: 1fr; }
}

/* ============================================ */
/* 21. BANDEAU RENVOI E-RÉPUTATION (ads-sea)    */
/* ============================================ */
.erep-teaser {
    position: relative;
    background: linear-gradient(115deg, #173C3A 0%, #14453f 60%, #0d2422 100%);
    border-radius: 24px;
    padding: 44px 52px;
    display: flex; align-items: center; justify-content: space-between; gap: 34px;
    overflow: hidden;
}
.erep-teaser__stars { display: inline-block; font-size: 1rem; letter-spacing: 5px; margin-bottom: 12px; }
.erep-teaser__dots {
    position: absolute; bottom: 18px; left: 38%; width: 120px; height: 80px; pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.14) 2px, transparent 2px);
    background-size: 18px 18px;
}
.erep-teaser__title { color: #fff; font-size: 1.55rem; font-weight: 700; line-height: 1.25; margin-bottom: 8px; }
.erep-teaser__title em { font-style: normal; color: #F7C948; }
.erep-teaser__text { color: rgba(255,255,255,0.72); font-size: 0.92rem; max-width: 52ch; }
@media (max-width: 820px) {
    .erep-teaser { flex-direction: column; align-items: flex-start; padding: 36px 26px; }
}

/* ============================================ */
/* 22. PAGE E-RÉPUTATION                        */
/* ============================================ */
/* Bandeau statistiques (fond ambré) */
.erep-stats { background: #FFF7E8; position: relative; overflow: hidden; }
.erep-stats__dots {
    position: absolute; top: 26px; left: 4%; width: 130px; height: 100px; pointer-events: none;
    background-image: radial-gradient(circle, rgba(245, 166, 35, 0.35) 2px, transparent 2px);
    background-size: 19px 19px;
}
.erep-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.erep-stat { text-align: center; padding: 8px 10px; }
.erep-stat__num { display: block; font-size: 2.7rem; font-weight: 800; color: #E8950C; line-height: 1.1; }
.erep-stat:nth-child(2) .erep-stat__num { color: var(--color-primary); font-size: 3.1rem; }
.erep-stat:nth-child(3) .erep-stat__num { color: var(--color-secondary); }
.erep-stat__label { display: block; font-size: 0.88rem; color: #6b7280; font-weight: 600; margin-top: 8px; line-height: 1.5; }
@media (max-width: 800px) { .erep-stats__grid { grid-template-columns: 1fr; gap: 18px; } }

/* Tuiles services 2x2 */
.erep-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
/* Tuiles teintées : la couleur de l'icône colore toute la carte (recette contact) */
.erep-tile {
    position: relative; border-radius: 20px; padding: 30px 30px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.erep-tile--green { background: linear-gradient(150deg, #eefaf3, #f9fdfa); border: 1.5px solid rgba(47, 185, 99, 0.28); }
.erep-tile--blue { background: linear-gradient(150deg, #eef4fe, #f9fbff); border: 1.5px solid rgba(59, 130, 246, 0.25); }
.erep-tile--amber { background: linear-gradient(150deg, #fdf5e4, #fffcf4); border: 1.5px solid rgba(245, 166, 35, 0.32); }
.erep-tile--dark { background: linear-gradient(150deg, #e9f1ef, #f6faf8); border: 1.5px solid rgba(23, 60, 58, 0.2); }
.erep-tile:hover { transform: translateY(-4px); }
.erep-tile--green:hover { box-shadow: 0 16px 38px rgba(47, 185, 99, 0.18); }
.erep-tile--blue:hover { box-shadow: 0 16px 38px rgba(59, 130, 246, 0.16); }
.erep-tile--amber:hover { box-shadow: 0 16px 38px rgba(245, 166, 35, 0.2); }
.erep-tile--dark:hover { box-shadow: 0 16px 38px rgba(23, 60, 58, 0.16); }
.erep-tile__icon {
    width: 54px; height: 54px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.erep-tile__icon svg { width: 26px; height: 26px; }
.erep-tile--green .erep-tile__icon { background: linear-gradient(135deg, #2FB963, #05C08A); color: #fff; box-shadow: 0 8px 18px rgba(47, 185, 99, 0.35); }
.erep-tile--amber .erep-tile__icon { background: linear-gradient(135deg, #F5A623, #F7C948); color: #4a3200; box-shadow: 0 8px 18px rgba(245, 166, 35, 0.35); }
.erep-tile--blue .erep-tile__icon { background: linear-gradient(135deg, #3b82f6, #60a5fa); color: #fff; box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35); }
.erep-tile--dark .erep-tile__icon { background: linear-gradient(135deg, #173C3A, #2D5A58); color: #fff; box-shadow: 0 8px 18px rgba(23, 60, 58, 0.3); }
.erep-tile__title { font-size: 1.08rem; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.erep-tile__text { font-size: 0.88rem; color: #5b6470; line-height: 1.6; }
@media (max-width: 760px) { .erep-tiles { grid-template-columns: 1fr; } }

/* Étapes process */
.erep-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.erep-steps::before {
    content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), #F5A623, var(--color-accent));
    opacity: 0.35;
}
.erep-step { text-align: center; position: relative; padding: 0 8px; }
.erep-step__num {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: #fff; font-weight: 800; font-size: 1.15rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; position: relative; z-index: 1;
    box-shadow: 0 8px 20px rgba(47, 185, 99, 0.3);
}
.erep-step:nth-child(2) .erep-step__num { background: linear-gradient(135deg, #F5A623, #F7C948); box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3); color: #173C3A; }
.erep-step__title { font-weight: 700; color: var(--color-primary); font-size: 1.02rem; margin-bottom: 8px; }
.erep-step__text { font-size: 0.86rem; color: #6b7280; line-height: 1.6; }
@media (max-width: 760px) { .erep-steps { grid-template-columns: 1fr; } .erep-steps::before { display: none; } }

/* Slot d'illustration générée (fallback propre si l'image manque encore) */
.illu-slot { position: relative; display: flex; align-items: center; justify-content: center; }
.illu-slot img { max-width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.25)); }
.illu-slot.--empty img { display: none; }
.erep-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.erep-langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.erep-lang { background: rgba(47, 185, 99, 0.1); border: 1px solid rgba(47, 185, 99, 0.25); color: var(--color-primary); font-size: 0.8rem; font-weight: 700; padding: 7px 14px; border-radius: 40px; }
@media (max-width: 800px) { .erep-split { grid-template-columns: 1fr; gap: 28px; } }


/* ============================================ */
/* 23. PAGE CONTACT V2                          */
/* ============================================ */

/* Mini-atouts du hero */
.contact-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.contact-perk {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-perk__title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
}

.contact-perk__sub {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    margin-top: 2px;
}

/* Mise en page 2 colonnes */
.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

/* Colonne gauche : les deux cartes voyagent ensemble en scroll */
.contact-side {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

/* Carte humaine : vert sapin, l'ancre coloree de la colonne */
.contact-human {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1C4644 100%);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 34px rgba(23, 60, 58, 0.28);
    padding: 28px;
}

.contact-human .contact-human__name { color: #ffffff; }
.contact-human .contact-human__quote { color: rgba(255, 255, 255, 0.82); }
.contact-human .contact-human__links li { color: rgba(255, 255, 255, 0.85); }
.contact-human .contact-human__links a { color: rgba(255, 255, 255, 0.85); }
.contact-human .contact-human__links a:hover { color: var(--color-secondary); }

/* Deroule du premier rendez-vous (grille 2x2 facon FLO) */
.contact-meeting {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 22px;
}

.contact-meeting__title {
    font-size: 1.02rem;
    color: var(--color-primary);
    margin: 0 0 14px;
}

.contact-meeting__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-meeting__item {
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 12px 14px;
}

/* Chaque tuile a sa teinte (meme famille que les tuiles e-reputation) */
.contact-meeting__item:nth-child(1) {
    background: rgba(47, 185, 99, 0.1);
    border-color: rgba(47, 185, 99, 0.25);
}

.contact-meeting__item:nth-child(2) {
    background: rgba(5, 192, 138, 0.09);
    border-color: rgba(5, 192, 138, 0.22);
}

.contact-meeting__item:nth-child(3) {
    background: rgba(245, 166, 35, 0.12);
    border-color: rgba(245, 166, 35, 0.32);
}

.contact-meeting__item:nth-child(4) {
    background: linear-gradient(150deg, var(--color-primary), #1C4644);
}

.contact-meeting__item:nth-child(4) .contact-meeting__t { color: #ffffff; }
.contact-meeting__item:nth-child(4) .contact-meeting__s { color: rgba(255, 255, 255, 0.72); }

.contact-meeting__t {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.contact-meeting__s {
    display: block;
    color: #6b7280;
    font-size: 0.78rem;
    margin-top: 3px;
    line-height: 1.45;
}

.contact-human__photo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px rgba(47, 185, 99, 0.35);
}

.contact-human__id { margin-top: 14px; }
.contact-human__name { display: block; font-weight: 700; color: var(--color-primary); font-size: 1.1rem; }
.contact-human__role { display: block; color: var(--color-secondary); font-size: 0.88rem; font-weight: 600; }

.contact-human__quote {
    margin-top: 14px;
    font-size: 0.94rem;
    color: #555;
    line-height: 1.65;
    font-style: italic;
}

.contact-human__links { list-style: none; margin-top: 18px; padding: 0; display: grid; gap: 10px; }
.contact-human__links li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #444; }
.contact-human__links svg { color: var(--color-secondary); flex-shrink: 0; }
.contact-human__links a { color: #444; }
.contact-human__links a:hover { color: var(--color-secondary); }

/* Formulaire 2 etapes */
.cform {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

.cform__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cform__title { font-size: 1.5rem; margin: 0; }
.cform__pill {
    background: rgba(47, 185, 99, 0.12);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.cform__progress { display: flex; gap: 10px; margin: 22px 0 26px; }
.cform__progress-step { flex: 1; }
.cform__progress-step span { display: block; font-size: 0.82rem; font-weight: 700; color: #9aa5a3; margin-bottom: 7px; transition: color 0.3s; }
.cform__progress-step i { display: block; height: 4px; border-radius: 2px; background: #e7ebea; transition: background 0.3s; }
.cform__progress-step--active span { color: var(--color-primary); }
.cform__progress-step--active i { background: var(--gradient-logo); }

.cform__step { display: none; border: none; margin: 0; padding: 0; }
.cform__step--active { display: block; animation: heroFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1); }

.cform__step .form-group label em { color: #98a2a0; font-style: normal; font-weight: 500; font-size: 0.82em; }

/* Chips services */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-check input { position: absolute; opacity: 0; pointer-events: none; }
.chip-check span {
    display: inline-block;
    padding: 9px 17px;
    border: 1.5px solid #dde3e1;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: #556;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.chip-check span:hover { border-color: var(--color-secondary); color: var(--color-primary); }
.chip-check input:checked + span {
    background: rgba(47, 185, 99, 0.12);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}
.chip-check input:focus-visible + span { outline: 2px solid var(--color-secondary); outline-offset: 2px; }

.cform__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; }

.cform__error {
    display: none;
    color: #C0392B;
    font-size: 0.86rem;
    font-weight: 600;
    margin-top: 10px;
}
.cform__error--visible { display: block; }

.cform__success {
    display: none;
    margin-top: 22px;
    background: rgba(47, 185, 99, 0.1);
    border: 1px solid rgba(47, 185, 99, 0.35);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    font-size: 0.92rem;
    color: var(--color-primary);
    line-height: 1.6;
}
.cform__success--visible { display: block; }
.cform__success strong { display: block; margin-bottom: 4px; }
.cform__success a { color: var(--color-secondary); font-weight: 700; }

@media (max-width: 900px) {
    .contact-perks { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-human { position: static; }
}

@media (max-width: 560px) {
    .cform { padding: 22px; }
    .cform__nav { flex-direction: column-reverse; align-items: stretch; }
    .cform__nav .btn { width: 100%; }
}

/* Hero contact : illustration boite aux lettres a gauche, texte a droite */
.contact-hero__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: var(--spacing-2xl);
}

.contact-hero__text {
    text-align: left;
}

.contact-hero__visual {
    text-align: center;
}

.contact-hero__visual img {
    width: min(340px, 26vw);
    height: auto;
    animation: contactFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.32));
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sous le texte du hero, les atouts passent en 2 colonnes */
.contact-hero__text .contact-perks {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
    .contact-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-hero__visual img {
        width: 220px;
    }
}

/* ============================================ */
/* FIX MENU MOBILE (26/08/2026)                 */
/* Le transform (centrage pilule) et le         */
/* backdrop-filter (verre) du header creent un  */
/* containing block : le menu plein ecran en    */
/* position fixed restait piege dans la pilule. */
/* En mobile : header sans transform ni verre,  */
/* fond quasi opaque, menu enfin plein ecran.   */
/* ============================================ */
@media (max-width: 768px) {
    .header {
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.96);
    }

    .header--on-dark:not(.scrolled) {
        background: rgba(16, 32, 31, 0.96);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Le menu plein ecran est toujours blanc : liens fonces lisibles,
       meme sur les pages a hero sombre (header--on-dark) */
    .header--on-dark:not(.scrolled) .nav__menu .nav__link {
        color: var(--color-dark);
    }

    /* Menu ouvert : la croix de fermeture doit rester visible sur le
       panneau blanc, meme quand le burger etait blanc (pages sombres) */
    .nav__toggle.active span,
    .header--on-dark:not(.scrolled) .nav__toggle.active span {
        background: var(--color-dark);
    }
}
