/* ===================================
   KROMATIC - Premium Editorial Design
   Rétro-moderne | Minimal | Chromatic
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prévenir le scroll horizontal global */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    /* Couleurs KROMATIC - Brand Identity */
    --primary-color: #030321; /* Bleu nuit */
    --secondary-color: #F9F9FF; /* Faux blanc */
    
    /* Accents néon chromatic */
    --accent-cyan: #A7E2FF; /* Bleu icid */
    --accent-green: #A9FFD2; /* Vert */
    --accent-green-alt: #72DAA6; /* Autre vert */
    --accent-pink: #FF70AE; /* Rose */
    --accent-violet: #8DA8FC; /* Bleu violet */
    
    /* Palette principale */
    --black: #000000;
    --night-blue: #030321;
    --blue-violet: #8DA8FC;
    --cyan: #A7E2FF;
    --pink: #FF70AE;
    --green: #A9FFD2;
    --white: #F9F9FF;
    
    /* Grayscale raffiné */
    --gray-900: #030321;
    --gray-800: #1A1A2A;
    --gray-700: #2A2A3A;
    --gray-600: #4A4A5A;
    --gray-500: #6B6B7B;
    --gray-400: #9B9BAB;
    --gray-300: #C1C1D1;
    --gray-200: #E1E1E8;
    --gray-100: #F0F0F5;
    
    /* Typography */
    --font-display: 'Exo 2', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --container-width: 1600px; /* Augmenté de 1400px à 1600px */
    --section-padding: 140px 0;
    --section-padding-mobile: 80px 0;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--night-blue);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px; /* Réduit de 80px à 40px pour exploiter la largeur */
}

/* =============== NAVIGATION =============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: rgba(3, 3, 33, 0.85) url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167, 226, 255, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    border-bottom: 1px solid rgba(167, 226, 255, 0.2);
    background: rgba(3, 3, 33, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-k-image {
    height: 28px;
    width: auto;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.logo:hover .logo-k-image {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    text-decoration: none;
    color: rgba(249, 249, 255, 0.7);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition-smooth);
}

/* Couleurs de soulignement au hover selon data-color */
.nav-link[data-color="pink"]::after {
    background: #FF70AE; /* Rose P 211 C */
}

.nav-link[data-color="blue"]::after {
    background: #8DA8FC; /* Bleu Violet P 7451 C */
}

.nav-link[data-color="green"]::after {
    background: #A9FFD2; /* Vert P 351 C */
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

/* =============== HERO SECTION =============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 200px 0 100px;
    overflow: hidden;
    background: url('../images/hero-background.jpg') center/cover no-repeat;
    background-color: var(--night-blue);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 33, 0.7);
    z-index: 0;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: radial-gradient(ellipse at top, rgba(3, 3, 33, 1) 0%, rgba(3, 3, 33, 0.98) 100%);
}

/* Accents néon KROMATIC - Statiques */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-violet);
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 40%;
    left: 40%;
}

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

/* H1 - Logo KROMATIC principal en haut */
.hero-logo-main {
    margin-bottom: 30px;
    text-align: center;
    max-width: 1100px; /* Réduit de 1400px à 1100px pour meilleur équilibre */
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-main .logo-kromatic-main {
    height: 120px; /* Augmenté de 100px à 120px */
    width: auto;
    max-width: 100%;
    opacity: 1;
    /* Halo supprimé pour design sobre */
    object-fit: contain;
}

/* H2 - Titre principal hero - 2 lignes - Exo 2 Black UPPERCASE - aligné avec logo */
.hero-main-title {
    margin-bottom: 12px; /* Réduit de 20px à 12px pour rapprocher H2 et H3 */
    max-width: 1100px; /* Réduit de 1400px à 1100px pour meilleur équilibre */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 20px; /* Padding pour éviter débordement sur petits écrans */
}

.hero-main-title .hero-line {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 62px); /* Réduit de 42-76px à 36-62px (-18%) */
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    /* Dégradé CHARTE KROMATIC avec touche de rose : Bleu violet → Bleu icid → Vert → Rose → Faux blanc */
    background: linear-gradient(135deg, 
        #8DA8FC 0%,      /* Bleu violet officiel (P 7451 C) - base dominante */
        #95B0F9 10%,     /* Évolution bleu violet */
        #9DB8F6 20%,     /* Transition progressive */
        #A5C7F3 30%,     /* Approche bleu icid */
        #A7E2FF 40%,     /* Bleu icid officiel (#a7e2ffff) - accent cyan */
        #A9E9EC 48%,     /* Micro-transition verdâtre */
        #A9FFD2 55%,     /* Vert officiel (P 351 C) - micro-accent discret */
        #C0FFE0 63%,     /* Vert pâle atténué */
        #D8F5E8 70%,     /* Transition vers rose */
        #FFD0E0 77%,     /* Rose pâle (#FF70AE atténué) - touche discrète */
        #FEE5ED 85%,     /* Rose très pâle */
        #F9F9FF 100%     /* Faux blanc officiel - final sobre */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 100%; /* Force la couverture complète */
    line-height: 1.05; /* Légèrement augmenté pour meilleure lisibilité */
    margin: 0;
    margin-bottom: 2px; /* Légèrement augmenté de 1pt à 2px */
    padding: 0;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-main-title .hero-line:last-child {
    margin-bottom: 0;
}

/* Espacement entre les lignes g\u00e9r\u00e9 par line-height */

/* Anciennes classes supprimées */

/* Logo */
.hero-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-image {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
}

/* Expertises en bas (nouveau) */
.hero-expertises-bottom {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* H3 - Briques d'offre (piliers visuels stables) - même largeur que le logo */
.hero-expertises-white {
    margin-bottom: 35px; /* Réduit de 60px à 35px pour rapprocher du liseré blanc */
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Réduit de 12px à 8px */
    flex-wrap: nowrap;
    max-width: 1100px; /* Réduit de 1400px à 1100px pour meilleur équilibre */
    margin-left: auto;
    margin-right: auto;
}

.hero-expertises-white p {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.7vw, 22px); /* Réduit de 17-25px à 15-22px (-12%) */
    font-weight: 400; /* Lissé de 600 à 400 pour plus de finesse */
    letter-spacing: 0.12em;
    text-transform: none;
    line-height: 1.5;
    margin-bottom: 0;
    color: #F9F9FF; /* Blanc pur pour toutes les expertises */
    /* Halos supprimés pour design sobre */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Halos colorés supprimés - texte blanc pur sobre */
.hero-expertises-white .exp-pink,
.hero-expertises-white .exp-violet,
.hero-expertises-white .exp-cyan,
.hero-expertises-white .exp-green {
    color: #F9F9FF; /* Blanc pur sans halo */
}

/* H4 - Expertises en couleurs - sur une ligne horizontale */
.hero-expertises-white .logo-k-separator {
    height: 16px;
    width: auto;
    opacity: 1;
    margin: 0;
    vertical-align: middle; /* Centre le K verticalement dans la ligne */
    display: inline-block; /* Nécessaire pour vertical-align */
}

/* Couleurs pour les logos K séparateurs */
.hero-expertises-white .logo-k-separator.k-pink {
    filter: drop-shadow(0 0 8px rgba(255, 112, 174, 0.6))
            drop-shadow(0 0 12px rgba(255, 112, 174, 0.4));
}

.hero-expertises-white .logo-k-separator.k-violet {
    filter: drop-shadow(0 0 8px rgba(198, 167, 255, 0.6))
            drop-shadow(0 0 12px rgba(198, 167, 255, 0.4));
}

.hero-expertises-white .logo-k-separator.k-cyan {
    filter: drop-shadow(0 0 8px rgba(167, 226, 255, 0.6))
            drop-shadow(0 0 12px rgba(167, 226, 255, 0.4));
}

.hero-expertises-white .logo-k-separator.k-green {
    filter: drop-shadow(0 0 8px rgba(150, 232, 195, 0.6))
            drop-shadow(0 0 12px rgba(150, 232, 195, 0.4));
}

.hero-expertises-white p:last-child {
    margin-bottom: 0;
}

/* Séparateurs bullets entre expertises */
.expertise-separator {
    font-size: clamp(12px, 1.3vw, 16px); /* Réduit de 14-18px à 12-16px */
    color: rgba(249, 249, 255, 0.4);
    margin: 0 4px; /* Réduit de 8px à 4px */
    vertical-align: middle;
    display: inline-block;
}

/* Séparateur blanc entre expertises et CTAs */
.hero-separator-line {
    width: 80px;
    height: 2px;
    margin: 25px auto 100px auto; /* Augmenté de 70px à 100px pour plus d'espacement */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 249, 255, 0.4) 20%,
        rgba(249, 249, 255, 0.6) 50%,
        rgba(249, 249, 255, 0.4) 80%,
        transparent 100%
    );
}

/* Texte description dans le Hero */
/* Ancien hero-title - garder pour compatibilité */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, 
        var(--accent-cyan) 0%, 
        var(--accent-green) 25%, 
        var(--accent-pink) 50%, 
        var(--accent-violet) 75%, 
        var(--accent-cyan) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Effet chromatic glow multicolore */
.hero-title::before {
    content: 'KROMATIC';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, 
        var(--accent-cyan), 
        var(--accent-green),
        var(--accent-pink), 
        var(--accent-violet)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(25px);
    opacity: 0.6;
    z-index: -1;
}

.hero-expertises {
    margin-bottom: 20px;
}

.hero-expertises p {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 500;
    color: rgba(249, 249, 255, 0.75);
    letter-spacing: 0.05em;
}

/* Couleurs pour chaque expertise */
.exp-strategy {
    color: var(--accent-cyan);
}

.exp-conseil {
    color: var(--accent-green);
}

.exp-branding {
    color: var(--accent-pink);
}

.exp-contenus {
    color: var(--accent-violet);
}

.exp-social {
    color: var(--accent-cyan);
}

.exp-performance {
    color: var(--accent-green);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    color: rgba(249, 249, 255, 0.8);
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* H4 - Boutons CTA */
.hero-cta {
    display: flex;
    gap: 70px; /* Augmenté de 50px à 70px pour plus d'espacement */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Anciens styles hero-nav-link - COMMENTÉS */
/* .hero-nav-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    position: relative;
    padding: 16px 60px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(249, 249, 255, 0.3);
}

.hero-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(249, 249, 255, 0.6);
}
*/

/* CTAs Hero sans trait blanc */
.hero-cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Trait blanc séparateur - SUPPRIMÉ */
/* .hero-cta-separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 249, 255, 0.6) 50%, 
        transparent 100%);
    border-radius: 1px;
} */

.hero-cta-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px; /* Réduit de 12px à 8px */
    text-decoration: none;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-cta-text {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.9vw, 22px); /* Réduit de 20-26px à 17-22px (-15%) */
    font-weight: 600; /* Changé de 400 à 600 (semi-bold) */
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(249, 249, 255, 0.9);
    text-shadow: 0 0 15px rgba(249, 249, 255, 0.2),
                 0 0 25px rgba(249, 249, 255, 0.1);
    transition: all 400ms ease;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

/* Couleurs de texte - Blanc fixe (pas de changement au hover) */
.hero-cta-pink .hero-cta-text,
.hero-cta-violet .hero-cta-text,
.hero-cta-green .hero-cta-text {
    color: #F9F9FF; /* Blanc fixe */
    text-shadow: 0 0 15px rgba(249, 249, 255, 0.3),
                 0 0 25px rgba(249, 249, 255, 0.15);
}

/* Bouton pastille K avec flèche bas - K et flèche restent fixes */
.hero-k-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px; /* Augmenté de 80px à 85px */
    height: 50px; /* Augmenté de 45px à 50px */
    border-radius: 25px;
    background: transparent;
    padding: 0 12px;
    z-index: 2;
}

/* Background de la pastille - s'étend au hover */
.hero-k-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(3, 3, 33, 0.6);
    backdrop-filter: blur(10px);
    transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1), background 400ms ease;
    z-index: -1;
}

/* Bordure dégradé rose/bleu filaire - s'étend au hover */
.hero-k-button-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, 
        #FF70AE 0%, 
        #C6A7FF 50%, 
        #A7E2FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: width 400ms ease, opacity 400ms ease, padding 400ms ease, background 400ms ease;
    z-index: -1;
}

/* Couleurs de filière AVANT hover - Bordure colorée selon le bouton */
.hero-cta-pink .hero-k-button-border {
    background: #FF70AE; /* Rose pour "L'agence" */
}

.hero-cta-violet .hero-k-button-border {
    background: #8DA8FC; /* Bleu violet pour "Nos offres" */
}

.hero-cta-green .hero-k-button-border {
    background: #96E8C3; /* Vert pour "Se rencontrer" */
}

/* Contenu K + flèche (horizontal) */
.hero-k-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.hero-k-icon {
    width: 16px;
    height: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-k-arrow {
    font-size: 22px; /* Augmenté de 20px à 22px */
    color: rgba(249, 249, 255, 0.85);
    text-shadow: 0 0 8px rgba(255, 112, 174, 0.3),
                 0 0 12px rgba(167, 226, 255, 0.2);
    transition: all 200ms ease;
    line-height: 1;
}

/* Hover states - Background et bordure s'étendent, K et flèche restent fixes */
.hero-cta-link:hover .hero-cta-text {
    color: #F9F9FF; /* Blanc fixe - pas de changement au hover */
    text-shadow: 0 0 15px rgba(249, 249, 255, 0.3),
                 0 0 25px rgba(249, 249, 255, 0.15);
}

/* Background s'étend vers la gauche via width */
.hero-cta-link:hover .hero-k-button::before {
    width: 220px; /* Largeur par défaut pour "L'agence" */
    background: transparent; /* Transparent par défaut, surchargé par les classes spécifiques */
}

/* Bordure s'étend aussi */
.hero-cta-link:hover .hero-k-button-border {
    width: 220px; /* Largeur par défaut pour "L'agence" */
    opacity: 1;
    padding: 2.5px;
}

/* Largeur spécifique pour "Nos offres" (texte moyen) */
.hero-cta-violet:hover .hero-k-button::before {
    width: 210px; /* Réduit de 240px à 210px */
}

.hero-cta-violet:hover .hero-k-button-border {
    width: 210px; /* Réduit de 240px à 210px */
}

/* Largeur spécifique pour "Se rencontrer" (texte le plus long) */
.hero-cta-green:hover .hero-k-button::before {
    width: 280px; /* Le plus large pour "Se rencontrer" */
}

.hero-cta-green:hover .hero-k-button-border {
    width: 280px; /* Le plus large pour "Se rencontrer" */
}

.hero-cta-link:hover .hero-k-icon {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 112, 174, 0.6))
            drop-shadow(0 0 14px rgba(167, 226, 255, 0.5))
            drop-shadow(0 0 18px rgba(198, 167, 255, 0.4));
}

.hero-cta-link:hover .hero-k-arrow {
    color: rgba(249, 249, 255, 1);
    text-shadow: 0 0 12px rgba(255, 112, 174, 0.5),
                 0 0 18px rgba(167, 226, 255, 0.4);
}

/* Colorations spécifiques au hover - Transparent avec bordures Rose et Violet */

/* Bouton "En savoir +" - Bordure Rose */
.hero-cta-pink:hover .hero-k-button::before {
    background: #FF70AE; /* Background rose plein au lieu de transparent */
    box-shadow: 0 0 30px rgba(255, 112, 174, 0.4),
                0 0 50px rgba(255, 112, 174, 0.2);
}

.hero-cta-pink:hover .hero-k-button-border {
    background: #FF70AE; /* Bordure rose plein */
    opacity: 1;
}

.hero-cta-pink:hover .hero-cta-text {
    color: #030321; /* Texte bleu nuit sur fond rose */
    text-shadow: none;
}

.hero-cta-pink:hover .hero-k-icon,
.hero-cta-pink:hover .hero-k-arrow {
    filter: brightness(0) saturate(100%) invert(4%) sepia(12%) saturate(7481%) hue-rotate(201deg) brightness(93%) contrast(101%);
    /* K et flèche en bleu nuit */
}

/* Bouton "Se rencontrer" - Bleu violet P 7451 C plein */
.hero-cta-violet:hover .hero-k-button::before {
    background: #8DA8FC; /* Background bleu violet P 7451 C plein */
    box-shadow: 0 0 30px rgba(141, 168, 252, 0.4),
                0 0 50px rgba(141, 168, 252, 0.2);
    width: 220px; /* Réduit de 240px à 220px */
}

.hero-cta-violet:hover .hero-k-button-border {
    background: #8DA8FC; /* Bordure bleu violet P 7451 C plein */
    opacity: 1;
    width: 220px; /* Réduit de 240px à 220px */
}

.hero-cta-violet:hover .hero-cta-text {
    color: #030321; /* Texte bleu nuit sur fond bleu violet */
    text-shadow: none;
}

.hero-cta-violet:hover .hero-k-icon,
.hero-cta-violet:hover .hero-k-arrow {
    filter: brightness(0) saturate(100%) invert(4%) sepia(12%) saturate(7481%) hue-rotate(201deg) brightness(93%) contrast(101%);
    /* K et flèche en bleu nuit */
}

/* Bouton "Se rencontrer" - Vert #96E8C3 plein */
.hero-cta-green:hover .hero-k-button::before {
    background: #96E8C3; /* Background vert plein */
    box-shadow: 0 0 30px rgba(150, 232, 195, 0.4),
                0 0 50px rgba(150, 232, 195, 0.2);
}

.hero-cta-green:hover .hero-k-button-border {
    background: #96E8C3; /* Bordure vert plein */
    opacity: 1;
}

.hero-cta-green:hover .hero-cta-text {
    color: #030321; /* Texte bleu nuit sur fond vert */
    text-shadow: none;
}

.hero-cta-green:hover .hero-k-icon,
.hero-cta-green:hover .hero-k-arrow {
    filter: brightness(0) saturate(100%) invert(4%) sepia(12%) saturate(7481%) hue-rotate(201deg) brightness(93%) contrast(101%);
    /* K et flèche en bleu nuit */
}

/* Anciens styles de couleurs - COMMENTÉS */
/* Bouton "L'offre" - Liseré blanc */
/* .hero-link-pink {
}

.hero-link-pink:hover {
    color: rgba(249, 249, 255, 1);
}
*/

/* Bouton "L'agence" - Liseré blanc */
/* .hero-link-green {
}

.hero-link-green:hover {
    color: rgba(249, 249, 255, 1);
}
*/

/* Labels sous les boutons avec logo KROMATIC */
.hero-cta-labels {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-cta-labels .cta-label {
    font-family: var(--font-display);
    font-size: clamp(12px, 1.3vw, 15px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(249, 249, 255, 0.5);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-cta-labels .cta-logo-kromatic {
    height: 30px;
    width: auto;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px rgba(167, 226, 255, 0.3)) 
            drop-shadow(0 0 8px rgba(169, 255, 210, 0.3));
}

/* Logo KROMATIC sous les boutons - GRAND et VISIBLE */
.hero-logo-bottom {
    margin-top: 35px;
    text-align: center;
}

.hero-logo-bottom .logo-kromatic-bottom {
    height: 70px;
    width: auto;
    opacity: 1;
    filter: none;
    transition: none;
}

.hero-logo-bottom .logo-kromatic-bottom:hover {
    opacity: 1;
    filter: none;
}

/* CTA "Nous découvrir" - SUPPRIMÉ */
/* .hero-discover {
    margin-top: 50px;
    text-align: center;
}

.hero-discover-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
}

.discover-text {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px #F9F9FF;
    text-stroke: 1.5px #F9F9FF;
    transition: all 150ms ease;
}

.discover-k-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: relative;
}

.discover-k-arrow .k-icon {
    width: 14px;
    height: auto;
    opacity: 0.6;
    filter: drop-shadow(0 0 6px rgba(167, 226, 255, 0.3));
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0) rotate(0deg);
}

.hero-discover-link:hover .discover-text {
    -webkit-text-stroke: 1.7px #F9F9FF;
    text-stroke: 1.7px #F9F9FF;
}

.hero-discover-link:hover .discover-k-arrow .k-icon {
    transform: translateY(5px) rotate(3deg);
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(167, 226, 255, 0.6))
            drop-shadow(0 0 16px rgba(167, 226, 255, 0.4));
}
*/

.btn-cta-hero {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #000000;
}

.btn-cta-hero span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #000000;
}

.btn-cta-hero .fas {
    color: #000000;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: var(--night-blue);
    border: none;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
    box-shadow: 0 15px 50px rgba(167, 226, 255, 0.3);
}

/* Bouton 1 : Dégradé Bleu-Violet (#A7E2FF → #8DA8FC) */
.btn-gradient-green-blue {
    background: linear-gradient(135deg, #A7E2FF 0%, #8DA8FC 100%) !important;
    color: #000000;
}

.btn-gradient-green-blue:hover {
    background: linear-gradient(135deg, #8DA8FC 0%, #A7E2FF 100%) !important;
    box-shadow: 0 15px 50px rgba(141, 168, 252, 0.5);
}

/* Bouton 3 : Dégradé Rose-Violet (#FF70AE → #8DA8FC) */
.btn-gradient-pink-blue {
    background: linear-gradient(135deg, #FF70AE 0%, #8DA8FC 100%) !important;
    color: #000000;
}

.btn-gradient-pink-blue:hover {
    background: linear-gradient(135deg, #8DA8FC 0%, #FF70AE 100%) !important;
    box-shadow: 0 15px 50px rgba(255, 112, 174, 0.5);
}

/* Bouton 2 : Dégradé Vert (#A9FFD2 → #72DAA6) */
.btn-gradient-green {
    background: linear-gradient(135deg, #A9FFD2 0%, #72DAA6 100%) !important;
    color: #000000;
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #72DAA6 0%, #A9FFD2 100%) !important;
    box-shadow: 0 15px 50px rgba(169, 255, 210, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(167, 226, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background: rgba(167, 226, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 45px;
    border: 2px solid rgba(249, 249, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2.5s infinite;
}


/* =============== SECTION STYLES =============== */
section {
    padding: var(--section-padding);
}

/* =============== APPROACH SECTION =============== */
.approach {
    background: linear-gradient(180deg, var(--night-blue) 0%, rgba(3, 3, 33, 0.95) 100%);
    border-top: 1px solid rgba(167, 226, 255, 0.1);
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
}

.approach-text {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.8);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.approach-text:last-child {
    margin-bottom: 0;
}

/* =============== SECTION PROMESSE (directement sous Hero) =============== */
/* ============================================
   SECTION 1 : ACCOMPAGNEMENT (après Hero)
   ============================================ */

.accompagnement-section {
    padding: 60px 0 80px 0;
    background: var(--night-blue);
    position: relative;
}

.accompagnement-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.accompagnement-text {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 28px); /* Plus grand : 20-28px au lieu de 16-18px */
    font-weight: 300;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   SECTION PROMESSE
   ============================================ */

/* ============================================
   SECTION PROMESSE - 2 COLONNES
   ============================================ */

.promesse-section {
    padding: 60px 0 80px 0;
    background: var(--night-blue);
    position: relative;
}

/* Layout 2 colonnes */
.promesse-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px; /* Harmonisé avec Hero (au lieu de 1400px) */
    margin: 0 auto;
    padding: 0;
    align-items: center;
    position: relative;
}

/* Séparateur vertical centré */
.promesse-two-columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(249, 249, 255, 0.2) 10%,
        rgba(249, 249, 255, 0.4) 50%,
        rgba(249, 249, 255, 0.2) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Colonne GAUCHE : Titre - Aligné au bord gauche du container */
.promesse-left {
    text-align: left;
    padding-right: 40px;
    padding-left: 0; /* Pas de padding gauche pour aligner avec le logo */
}

.promesse-title-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 62px); /* Harmonisé avec H2 Hero */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05; /* Harmonisé avec H2 Hero */
}

/* Colonne DROITE : Texte */
.promesse-right {
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.promesse-text {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    text-align: left;
}

/* Sous-titre "Les 4 piliers de l'offre" */
.promesse-subtitle {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(249, 249, 255, 0.6);
    text-align: left;
    margin: 0;
    text-transform: uppercase;
}

.word-full-white {
    color: #A7E2FF; /* Bleu icid au lieu de blanc */
    font-weight: 900;
    text-shadow: 0 0 20px rgba(167, 226, 255, 0.3); /* Halo bleu icid */
}

/* ============================================
   SECTION ADN : "CONSTRUIRE ENSEMBLE" + Notre ADN (2 colonnes)
   ============================================ */

.adn-promesse-section {
    padding: 60px 0 80px 0;
    background: var(--night-blue);
    position: relative;
}

/* Layout 2 colonnes (identique à SECTION 1 PROMESSE) */
.adn-promesse-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px; /* Harmonisé avec Hero (au lieu de 1400px) */
    margin: 0 auto;
    padding: 0;
    align-items: start; /* Alignement en haut pour synchroniser horizontalement */
    position: relative;
}

/* Séparateur vertical centré - Gradient rose */
.adn-promesse-two-columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 112, 174, 0.2) 10%,
        rgba(255, 112, 174, 0.4) 50%,
        rgba(255, 112, 174, 0.2) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Colonne GAUCHE : Titre "Construire ensemble" */
.adn-promesse-left {
    text-align: left;
    padding-right: 40px;
    padding-left: 0;
}

.adn-promesse-title-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.adn-title-line {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

/* Colonne DROITE : Notre ADN */
.adn-promesse-right {
    padding-left: 40px;
}

.adn-section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FF70AE; /* Rose */
    margin-bottom: 30px;
}

.adn-bloc-text {
    margin-bottom: 30px;
}

.adn-bloc-text:last-child {
    margin-bottom: 0;
}

.adn-bloc-text p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    text-align: left;
}

.adn-bloc-text strong {
    font-weight: 700;
    color: #F9F9FF;
}

/* ============================================
   SECTION PERFORMANCE : "Le fond K La forme K La performance" + Notre Méthode (1 colonne)
   ============================================ */

.performance-section {
    padding: 80px 0 100px 0;
    background: var(--night-blue);
    position: relative;
    overflow: hidden;
}

/* Fond d'image avec overlay */
.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/fond-performance.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Contenu au-dessus du fond */
.performance-section > * {
    position: relative;
    z-index: 1;
}

/* Layout 1 colonne centrée */
.performance-two-columns {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Colonne unique : Le fond K La forme K La performance + texte */
.performance-left {
    text-align: left;
}

/* Titre Le fond K La forme K La performance (en haut) */
.performance-left-title-lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.performance-left-title-line {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.performance-left-k-separator {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0;
}

.performance-left-k-separator img {
    width: 40px;
    height: auto;
}

/* Contenu Notre Méthode centré */
.performance-content {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 40px;
    text-align: center;
}

/* Titre "Notre Méthode" centré */
.performance-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F9F9FF; /* Blanc */
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

/* Séparateur horizontal blanc sous "Notre Méthode" */
.performance-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(249, 249, 255, 0.4);
}

/* Blocs de texte */
.performance-text-bloc {
    margin-bottom: 30px;
}

.performance-text-bloc:first-child {
    margin-top: 40px; /* Espacement après le séparateur */
}

.performance-text-bloc:last-child {
    margin-bottom: 0;
}

.performance-text-bloc p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    text-align: center;
}

.performance-text-bloc strong {
    font-weight: 700;
    color: #F9F9FF;
}

/* Anciens styles (supprimés ou renommés) */
/* Titre "Notre Méthode" */
.performance-section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8DA8FC; /* Violet */
    margin-bottom: 30px;
    text-align: left;
}

.performance-bloc-text {
    margin-bottom: 30px;
}

.performance-bloc-text:last-child {
    margin-bottom: 0;
}

.performance-bloc-text p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    text-align: left;
}

.performance-bloc-text strong {
    font-weight: 700;
    color: #F9F9FF;
}

/* ============================================
   SECTION 2 : LES 4 PILIERS DE L'OFFRE
   ============================================ */

.piliers-section {
    padding: 0 40px;
}

/* ============================================
   SECTION HYBRIDATION : "L'HYBRIDATION" + UN MODÈLE UNIQUE (2 colonnes)
   ============================================ */

.hybridation-section {
    padding: 60px 0 80px 0;
    background: var(--night-blue);
    position: relative;
}

/* Layout 2 colonnes (identique à SECTION 1 PROMESSE) */
.hybridation-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px; /* Harmonisé avec Hero (au lieu de 1400px) */
    margin: 0 auto;
    padding: 0;
    align-items: start; /* Alignement en haut pour synchroniser horizontalement */
    position: relative;
}

/* Séparateur vertical centré - Gradient vert */
.hybridation-two-columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(150, 232, 195, 0.2) 10%,
        rgba(150, 232, 195, 0.4) 50%,
        rgba(150, 232, 195, 0.2) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Colonne GAUCHE : Titre "L'hybridation" */
.hybridation-left {
    text-align: left;
    padding-right: 40px;
    padding-left: 0;
}

.hybridation-title-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.hybridation-title-line {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

/* Colonne DROITE : UN MODÈLE UNIQUE */
.hybridation-right {
    padding-left: 40px;
}

.hybridation-section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #96E8C3; /* Vert */
    margin-bottom: 30px;
}

.hybridation-bloc-text {
    margin-bottom: 30px;
}

.hybridation-bloc-text:last-child {
    margin-bottom: 0;
}

.hybridation-bloc-text p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    text-align: left;
}

.hybridation-bloc-text strong {
    font-weight: 700;
    color: #F9F9FF;
}

/* ============================================
   SECTION 2 : LES 4 PILIERS DE L'OFFRE
   ============================================ */

.piliers-section {
    padding: 80px 0;
    background: var(--night-blue);
    position: relative;
}

.piliers-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F9F9FF;
    text-align: center;
    margin: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ligne décorative sous le titre */
.piliers-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-cyan) 50%,
        transparent 100%
    );
    margin: 25px auto 0;
}

/* Halo bleu derrière le titre promesse */
.promesse-halo-rose {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}

.promesse-halo-rose::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 112, 174, 0.4) 0%,
        rgba(255, 112, 174, 0.25) 40%,
        transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    animation: haloRosePulse 3s ease-in-out infinite;
}

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

.promesse-halo-bleu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}

.promesse-halo-bleu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse at center, 
        rgba(141, 168, 252, 0.4) 0%,
        rgba(167, 226, 255, 0.25) 40%,
        transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    animation: haloBleuPulse 3s ease-in-out infinite;
}

/* Séparateur blanc seul */
.promesse-separator-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 249, 255, 0.5) 50%, 
        transparent 100%);
    border-radius: 1px;
    margin: 40px auto;
}

/* Texte en dessous - taille réduite */
.promesse-text-container {
    max-width: 1000px;
    margin: 0 auto;
}

.promesse-text-centered {
    font-family: var(--font-body);
    font-size: clamp(19px, 2.3vw, 28px); /* Augmenté de 18-26px à 19-28px */
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.005em;
    margin: 0;
}

/* CTA "Découvrir nos offres" - Bouton rond avec dégradé rose/bleu + halo */
.promesse-cta {
    margin-top: 50px;
    text-align: center;
    position: relative;
}

/* Trait blanc séparateur au-dessus du CTA */
.promesse-cta-separator {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 249, 255, 0.6) 50%, 
        transparent 100%);
    border-radius: 1px;
    margin: 0 auto 30px auto;
}

.promesse-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    position: relative;
}

/* Ligne horizontale : texte + K */
.promesse-cta-row {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

/* Halo derrière le CTA */
.promesse-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 112, 174, 0.25) 0%,
        rgba(167, 226, 255, 0.15) 40%,
        transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
    animation: ctaHaloPulse 4s ease-in-out infinite;
}

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

.promesse-cta-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(249, 249, 255, 0.85);
    text-shadow: 0 0 15px rgba(249, 249, 255, 0.2),
                 0 0 25px rgba(249, 249, 255, 0.1);
    transition: all 200ms ease;
    white-space: nowrap;
}

/* Bouton rond avec bordure dégradé rose/bleu filaire */
.promesse-k-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(3, 3, 33, 0.6);
    backdrop-filter: blur(10px);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bordure dégradé rose/bleu filaire */
.k-button-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, 
        #FF70AE 0%, 
        #C6A7FF 50%, 
        #A7E2FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
    transition: all 200ms ease;
}

.promesse-k-button .k-icon {
    width: 24px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 6px rgba(255, 112, 174, 0.4))
            drop-shadow(0 0 8px rgba(167, 226, 255, 0.3));
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0) rotate(0deg);
    position: relative;
    z-index: 1;
}

/* Hover states */
.promesse-cta-link:hover .promesse-cta-text {
    color: rgba(249, 249, 255, 1);
    text-shadow: 0 0 20px rgba(249, 249, 255, 0.4),
                 0 0 30px rgba(249, 249, 255, 0.2);
}

.promesse-cta-link:hover .promesse-k-button {
    transform: scale(1.05);
    background: rgba(3, 3, 33, 0.8);
}

.promesse-cta-link:hover .k-button-border {
    opacity: 1;
    padding: 3px;
}

.promesse-cta-link:hover .promesse-k-button .k-icon {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(255, 112, 174, 0.7))
            drop-shadow(0 0 18px rgba(167, 226, 255, 0.5))
            drop-shadow(0 0 24px rgba(198, 167, 255, 0.4));
}

/* Ancien code supprimé - nouvelle structure utilisée */

/* Media query intermédiaire pour éviter le texte coupé sur écrans moyens */
@media (max-width: 1400px) {
    .hero-main-title .hero-line {
        font-size: clamp(38px, 5.5vw, 70px); /* Réduit sur écrans moyens */
    }
}

@media (max-width: 1200px) {
    .hero-main-title .hero-line {
        white-space: normal; /* Permet le wrap sur écrans < 1200px si nécessaire */
        word-wrap: break-word;
    }
}

/* Responsive promesse section */
@media (max-width: 968px) {
    /* Hero Title Tablet Responsive - Optimisé pour largeur */
    .hero-main-title {
        max-width: 95%; /* Augmenté de 90% pour exploiter la largeur */
        padding: 0 15px;
    }
    
    .hero-main-title .hero-line {
        font-size: clamp(36px, 7vw, 72px); /* Optimisé tablette : 36-72px */
        line-height: 1.05;
        margin-bottom: 2px;
        white-space: normal; /* Permet le wrap sur tablette si nécessaire */
        word-wrap: break-word; /* Force la coupe des mots longs si besoin */
    }
    
    /* Hero CTAs tablet responsive */
    .hero-cta-item {
        gap: 6px;
    }
    
    /* Séparateur blanc responsive */
    .hero-separator-line {
        width: 60px;
        margin: 30px auto 60px auto; /* Augmenté la marge du bas de 40px à 60px */
    }
    
    /* Trait blanc - SUPPRIMÉ */
    /* .hero-cta-separator {
        width: 55px;
    } */
    
    .hero-cta-text {
        font-size: clamp(18px, 4vw, 24px); /* Augmenté */
        font-weight: 600; /* Semi-bold */
    }
    
    .hero-cta-link {
        gap: 6px; /* Réduit de 10px à 6px pour tablet */
    }
    
    .hero-k-button {
        width: 78px; /* Augmenté de 72px */
        height: 48px; /* Augmenté de 42px */
        border-radius: 24px;
    }
    
    /* Hover tablet - width ajusté */
    .hero-cta-link:hover .hero-k-button::before {
        width: 230px; /* Optimisé : 230px pour tablette */
    }
    
    .hero-cta-link:hover .hero-k-button-border {
        width: 230px; /* Optimisé : 230px pour tablette */
    }
    
    /* Extension plus grande pour "Se rencontrer" (texte plus long) */
    .hero-cta-violet:hover .hero-k-button::before {
        width: 220px; /* Réduit de 240px à 220px pour tablette */
    }
    
    .hero-cta-violet:hover .hero-k-button-border {
        width: 220px; /* Réduit de 240px à 220px pour tablette */
    }
    
    .hero-cta {
        gap: 50px; /* Augmenté de 40px à 50px pour tablette */
    }
    
    .hero-k-button-border {
        border-radius: 24px; /* Augmenté de 22px */
    }
    
    .hero-k-content {
        gap: 5px;
    }
    
    .hero-k-icon {
        width: 14px;
    }
    
    .hero-k-arrow {
        font-size: 20px; /* Augmenté de 18px */
    }
    
    .promesse-section {
        padding: 35px 0 50px 0;
    }
    
    .promesse-block {
        margin-bottom: 30px; /* Réduit pour tablet */
    }
    
    .promesse-title-single-line {
        font-size: clamp(20px, 4vw, 36px);
        gap: 15px;
    }
    
    .promesse-halo-rose {
        width: 350px;
        height: 110px;
    }
    
    .promesse-halo-rose::before {
        width: 350px;
        height: 90px;
    }
    
    .promesse-halo-bleu {
        width: 350px;
        height: 110px;
    }
    
    .promesse-halo-bleu::before {
        width: 350px;
        height: 90px;
    }
    
    .promesse-separator-line {
        width: 60px;
        margin: 35px auto;
    }
    
    .promesse-text-centered {
        font-size: clamp(17px, 4vw, 24px);
        line-height: 1.55;
        padding: 0 20px;
    }
    
    .promesse-cta-separator {
        width: 60px;
        margin-bottom: 25px;
    }
    
    .promesse-cta-text {
        font-size: clamp(15px, 4vw, 18px);
    }
    
    .promesse-k-button {
        width: 60px;
        height: 40px;
        border-radius: 20px;
    }
    
    .k-button-border {
        border-radius: 20px;
    }
    
    .promesse-k-content {
        gap: 3px;
    }
    
    .promesse-k-button .k-icon {
        width: 15px;
    }
    
    .promesse-k-arrow {
        font-size: 17px;
    }
    
    .promesse-cta::before {
        width: 250px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    /* Promesse 2 colonnes → 1 colonne sur mobile */
    .promesse-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0; /* Pas de padding, aligné avec container mobile */
    }
    
    /* Suppression du séparateur vertical sur mobile */
    .promesse-two-columns::before {
        display: none;
    }
    
    /* Colonne gauche centrée sur mobile */
    .promesse-left {
        text-align: center;
        padding-right: 0;
    }
    
    .promesse-subtitle {
        text-align: center;
    }
    
    /* Colonne droite centrée sur mobile */
    .promesse-right {
        padding-left: 0;
    }
    
    .promesse-text {
        text-align: center;
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .title-line {
        font-size: clamp(24px, 6vw, 40px);
        text-align: center;
    }
    
    /* Section 2 : Les 4 piliers responsive */
    .piliers-section {
        padding: 50px 0;
    }
    
    .piliers-title {
        font-size: clamp(20px, 5vw, 32px);
    }
    
    .piliers-title::after {
        width: 80px;
        height: 2px;
        margin: 20px auto 0;
    }
    
    /* Section ADN "Construire ensemble" responsive */
    .adn-promesse-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .adn-promesse-two-columns::before {
        display: none;
    }
    
    .adn-promesse-left {
        text-align: center;
        padding-right: 0;
    }
    
    .adn-promesse-right {
        padding-left: 0;
    }
    
    .adn-title-line {
        font-size: clamp(24px, 6vw, 40px);
        text-align: center;
    }
    
    .adn-section-title {
        text-align: center;
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .adn-bloc-text p {
        text-align: center;
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    /* Section Performance responsive */
    .performance-content {
        padding: 0 20px;
        margin-top: 40px;
    }
    
    .performance-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 15px;
        padding-bottom: 25px;
    }
    
    .performance-title::after {
        width: 60px;
        height: 1.5px;
    }
    
    .performance-text-bloc:first-child {
        margin-top: 30px;
    }
    
    .performance-text-bloc p {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .performance-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .performance-two-columns::before {
        display: none;
    }
    
    .performance-left {
        padding-right: 0;
        order: 2; /* Texte en deuxième sur mobile */
    }
    
    .performance-right {
        padding-left: 0;
        order: 1; /* Titre en premier sur mobile */
        text-align: center;
    }
    
    .performance-section-title {
        text-align: center;
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .performance-bloc-text p {
        text-align: center;
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .performance-title-line {
        font-size: clamp(24px, 6vw, 40px);
        text-align: center;
    }
    
    .performance-title-lines {
        align-items: center;
    }
    
    .performance-k-separator {
        justify-content: center;
    }
    
    /* Section Hybridation responsive */
    .hybridation-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .hybridation-two-columns::before {
        display: none;
    }
    
    .hybridation-left {
        text-align: center;
        padding-right: 0;
    }
    
    .hybridation-right {
        padding-left: 0;
    }
    
    .hybridation-title-line {
        font-size: clamp(24px, 6vw, 40px);
        text-align: center;
    }
    
    .hybridation-section-title {
        text-align: center;
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .hybridation-bloc-text p {
        text-align: center;
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .promesse-halo-rose::before {
        width: 300px;
        height: 80px;
    }
    
    .promesse-halo-bleu {
        width: 300px;
        height: 100px;
    }
    
    .promesse-halo-bleu::before {
        width: 300px;
        height: 80px;
    }
    
    .promesse-separator-line {
        width: 50px;
        height: 1.5px;
        margin: 30px auto;
    }
    
    .promesse-text-centered {
        font-size: clamp(16px, 4.5vw, 22px);
        line-height: 1.4;
        padding: 0 20px;
    }
    
    .promesse-cta-separator {
        width: 50px;
        margin-bottom: 20px;
    }
    
    .promesse-cta-text {
        font-size: clamp(14px, 4.5vw, 16px);
    }
    
    .promesse-k-button {
        width: 55px;
        height: 38px;
        border-radius: 19px;
    }
    
    .k-button-border {
        border-radius: 19px;
    }
    
    .promesse-k-content {
        gap: 2px;
    }
    
    .promesse-k-button .k-icon {
        width: 14px;
    }
    
    .promesse-k-arrow {
        font-size: 16px;
    }
    
    .promesse-cta::before {
        width: 220px;
        height: 110px;
    }
}

/* Ancien code supprimé - nouvelle structure utilisée */

/* =============== SECTION INTRODUCTION (supprimée) =============== */
/* Section intro supprimée car intégrée dans promesse-section */

/* =============== MODÈLE UNIQUE SECTION =============== */
.modele-unique {
    padding: 100px 0 var(--section-padding);
    background: var(--night-blue);
    position: relative;
    overflow: hidden;
}

.modele-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/brick-texture-pink.jpg') center/cover no-repeat;
    opacity: 0.03;
    filter: blur(3px) saturate(0.6);
    z-index: 0;
}

.modele-unique::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                                rgba(255, 112, 174, 0.02) 0%, 
                                transparent 50%);
    z-index: 1;
}

.modele-layout {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Photo et séparateur supprimés - contenu aligné à gauche */

.modele-content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.modele-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.modele-header {
    margin-bottom: 40px;
    text-align: left;
}

.modele-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #a7e2ffff;
    text-shadow: -15px 0 20px rgba(249, 249, 255, 0.2),
                 -25px 0 30px rgba(249, 249, 255, 0.15),
                 -35px 0 40px rgba(249, 249, 255, 0.1);
    margin-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    white-space: nowrap;
}

.highlight-modele {
    /* Styles conservés pour compatibilité mais tout le titre est en dégradé maintenant */
}

.modele-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.modele-intro {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    letter-spacing: -0.01em;
}

.modele-intro-tagline {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(249, 249, 255, 0.85);
    text-shadow: 0 0 20px rgba(249, 249, 255, 0.3),
                 0 0 30px rgba(249, 249, 255, 0.2);
    line-height: 1.5;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modele-k-separator {
    height: 12px;
    width: auto;
    opacity: 0.5;
    filter: drop-shadow(0 0 8px rgba(167, 226, 255, 0.2)) drop-shadow(0 0 8px rgba(255, 112, 174, 0.2));
}

.modele-description {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.4;
    color: rgba(249, 249, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Mobile styles for Modèle Unique */
@media (max-width: 968px) {
    .modele-unique {
        padding: var(--section-padding-mobile);
    }
    
    .modele-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modele-separator {
        display: none;
    }
    
    .modele-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .modele-text {
        gap: 20px;
        text-align: left;
    }
}

/* =============== SECTION HEADER STYLES =============== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    color: rgba(249, 249, 255, 0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Contact intro description */
.contact-intro {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.6vw, 18px);
    color: rgba(249, 249, 255, 0.8);
    line-height: 1.4;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-main {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #F9F9FF;
    text-shadow: -15px 0 20px rgba(249, 249, 255, 0.2),
                 -25px 0 30px rgba(249, 249, 255, 0.15),
                 -35px 0 40px rgba(249, 249, 255, 0.1);
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-description-main {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-pink), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(167, 226, 255, 0.08);
    color: var(--accent-cyan);
    border-radius: 0;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(167, 226, 255, 0.25);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(46px, 6vw, 76px); /* Augmenté de 42-68px à 46-76px */
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-title .highlight {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title .highlight-full {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-pink), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title .number-highlight {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-pink), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    opacity: 0.2;
    z-index: -1;
    filter: blur(3px);
}

.section-description {
    font-size: 19px;
    color: rgba(249, 249, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* =============== SERVICES SECTION (OFFRE) =============== */
.services {
    background: radial-gradient(ellipse at center, rgba(141, 168, 252, 0.08) 0%, var(--night-blue) 70%);
    border-top: 1px solid rgba(167, 226, 255, 0.1);
    border-bottom: 1px solid rgba(167, 226, 255, 0.1);
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Ligne expertises style hero - en haut */
.services-expertises-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.offre-item {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.offre-cyan { color: var(--accent-cyan); }
.offre-pink { color: var(--accent-pink); }
.offre-green { color: var(--accent-green); }
.offre-violet { color: var(--accent-violet); }

/* Titre "4 OFFRES COMPLÉMENTAIRES" - Même style que H3 Hero Expertises */
.section-title-offres {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px); /* Harmonisé avec sous-titre Promesse */
    font-weight: 400;
    letter-spacing: 0.08em; /* Harmonisé avec sous-titre Promesse */
    text-transform: uppercase; /* Comme sous-titre Promesse */
    color: rgba(249, 249, 255, 0.7); /* Harmonisé avec sous-titre Promesse */
    margin: 0;
    text-align: center;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header équipe avec bouton discret */
.equipe-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Lien discret "Nous rejoindre" */
.equipe-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(249, 249, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(249, 249, 255, 0.03);
    border: 1px solid rgba(249, 249, 255, 0.1);
}

.equipe-cta-link:hover {
    color: rgba(249, 249, 255, 0.9);
    background: rgba(249, 249, 255, 0.08);
    border-color: rgba(249, 249, 255, 0.2);
}

.equipe-cta-text {
    font-size: inherit;
    letter-spacing: 0.02em;
}

.equipe-cta-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.equipe-cta-link:hover .equipe-cta-arrow {
    transform: translateX(4px);
}

/* Header équipe aligné à gauche */
.equipe-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-left: 0;
}

.section-title-offres-left {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(249, 249, 255, 0.7);
    margin: 0;
    text-align: left;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.equipe-cta-link-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(249, 249, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(249, 249, 255, 0.03);
    border: 1px solid rgba(249, 249, 255, 0.1);
}

.equipe-cta-link-left:hover {
    color: rgba(249, 249, 255, 0.9);
    background: rgba(249, 249, 255, 0.08);
    border-color: rgba(249, 249, 255, 0.2);
}

.equipe-cta-link-left:hover .equipe-cta-arrow {
    transform: translateX(4px);
}

/* ============================================
   SECTION QUELQUES K' : Cas clients
============================================ */
.quelques-k-section {
    padding: 80px 0;
    background: var(--night-blue);
    position: relative;
}

.quelques-k-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 60px 40px;
    background: rgba(249, 249, 255, 0.02);
    border: 2px solid rgba(249, 249, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quelques-k-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 226, 255, 0.05) 0%, rgba(141, 168, 252, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quelques-k-link:hover::before {
    opacity: 1;
}

.quelques-k-link:hover {
    border-color: rgba(167, 226, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(167, 226, 255, 0.1);
}

.quelques-k-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    color: #F9F9FF;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2vw, 25px);
}

.quelques-k-logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quelques-k-logo {
    width: clamp(50px, 7vw, 80px);
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(167, 226, 255, 0.6))
            drop-shadow(0 0 40px rgba(167, 226, 255, 0.4))
            drop-shadow(0 0 60px rgba(167, 226, 255, 0.2));
    transition: all 0.4s ease;
}

.quelques-k-link:hover .quelques-k-logo {
    filter: drop-shadow(0 0 30px rgba(167, 226, 255, 0.8))
            drop-shadow(0 0 50px rgba(167, 226, 255, 0.6))
            drop-shadow(0 0 80px rgba(167, 226, 255, 0.4));
    transform: scale(1.05);
}

/* Ancien style highlight supprimé */
.quelques-k-highlight {
    color: #A7E2FF;
    text-shadow: 0 0 30px rgba(167, 226, 255, 0.3);
}

.quelques-k-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: rgba(249, 249, 255, 0.6);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quelques-k-arrow {
    font-size: clamp(28px, 4vw, 40px);
    color: rgba(167, 226, 255, 0.8);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.quelques-k-link:hover .quelques-k-arrow {
    transform: translateX(10px);
}

/* Titre spécial OFFRES : Construire ensemble */
.offres-title-special {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Titre principal "Le fond K La forme K La performance" - format harmonisé */
.services-title-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.services-single-line {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.services-k-separator {
    height: 16px;
    width: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

/* K uniformisés en blanc */
.services-k-separator.k-rose {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.services-k-separator.k-violet {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.services-k-separator.k-vert {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

/* Halo bleu réduit derrière le titre */
.services-halo-bleu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 90px;
    pointer-events: none;
    z-index: 0;
}

.services-halo-bleu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 75px;
    background: radial-gradient(ellipse at center, 
        rgba(141, 168, 252, 0.25) 0%,
        rgba(167, 226, 255, 0.15) 40%,
        transparent 70%);
    filter: blur(25px);
    border-radius: 50%;
}

/* Séparateur filaire entre sections */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(167, 226, 255, 0.3) 20%, 
        rgba(255, 112, 174, 0.3) 50%, 
        rgba(169, 255, 210, 0.3) 80%, 
        transparent 100%);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(167, 226, 255, 0.05);
    border: 1px solid rgba(167, 226, 255, 0.1);
}

.service-card {
    background: transparent;
    padding: 60px 45px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    transition: var(--transition-smooth);
}

.service-card[data-color="frame"]::before {
    background: var(--accent-cyan);
}

.service-card[data-color="lens"]::before {
    background: var(--accent-green);
}

.service-card[data-color="echoes"]::before {
    background: var(--accent-pink);
}

.service-card[data-color="impulse"]::before {
    background: var(--accent-violet);
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: rgba(3, 3, 33, 0.9);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.15);
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1;
    opacity: 0.15;
}

.service-card[data-color="frame"] .service-number {
    color: var(--accent-cyan);
}

.service-card[data-color="lens"] .service-number {
    color: var(--accent-green);
}

.service-card[data-color="echoes"] .service-number {
    color: var(--accent-pink);
}

.service-card[data-color="impulse"] .service-number {
    color: var(--accent-violet);
}

/* Numéros en fondu sur fond holographique ADN */
.adn-section .service-number {
    opacity: 1; /* Visible avec couleurs */
    font-size: 56px;
    margin-bottom: 20px;
}

/* Cartes ADN avec encadrés arrondis */
.adn-section .service-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 50px 40px;
    transition: all 0.4s ease;
}

.adn-section .service-card:hover {
    background: transparent;
    transform: translateY(-8px);
}

/* Layout 2 colonnes : ADN (gauche) + MÉTHODE (droite) */
.adn-methode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Séparateur vertical entre ADN et MÉTHODE - PLUS VISIBLE */
.adn-methode-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        rgba(255, 112, 174, 0.3) 0%,
        rgba(141, 168, 252, 0.3) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 112, 174, 0.2);
}

/* Colonne ADN (gauche) */
.adn-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 40px;
}

/* Colonne MÉTHODE (droite) */
.methode-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 40px;
}
    gap: 30px;
}

/* Titres des colonnes - MISE EN EXERGUE */
.column-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid currentColor;
}

/* Titre ADN - Couleur ROSE */
.adn-title {
    color: var(--accent-pink); /* Rose #FF70AE */
}

/* Titre MÉTHODE - Couleur BLEUE/VIOLET */
.methode-title {
    color: var(--accent-violet); /* Violet #8DA8FC */
}

/* Code couleur ADN (blocs 1-2) - Rose */
.adn-bloc strong {
    color: var(--accent-pink); /* Rose #FF70AE */
}

/* Code couleur MÉTHODE (blocs 3-4) - Violet */
.methode-bloc strong {
    color: var(--accent-violet); /* Violet #8DA8FC */
}

/* Blocs empilés verticalement avec séparateurs */
.adn-column .service-card,
.methode-column .service-card {
    margin-bottom: 0;
    padding: 50px 0;
}

/* Séparateurs horizontaux entre les blocs - PLUS VISIBLE */
.adn-column .service-card:not(:last-child),
.methode-column .service-card:not(:last-child) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Premier bloc : pas de padding-top */
.adn-column .service-card:first-of-type,
.methode-column .service-card:first-of-type {
    padding-top: 0;
}
}

/* Responsive : mobile (1 colonne) */
@media (max-width: 768px) {
    .adn-methode-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Couleurs des numéros ADN avec halos */
.adn-section .service-card[data-color="lens"] .service-number {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(150, 232, 195, 0.6),
                 0 0 35px rgba(150, 232, 195, 0.4),
                 0 0 50px rgba(150, 232, 195, 0.3);
}

.adn-section .service-card[data-color="frame"] .service-number {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(167, 226, 255, 0.6),
                 0 0 35px rgba(167, 226, 255, 0.4),
                 0 0 50px rgba(167, 226, 255, 0.3);
}

.adn-section .service-card[data-color="echoes"] .service-number {
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(255, 112, 174, 0.6),
                 0 0 35px rgba(255, 112, 174, 0.4),
                 0 0 50px rgba(255, 112, 174, 0.3);
}

.adn-section .service-card[data-color="impulse"] .service-number {
    color: var(--accent-violet);
    text-shadow: 0 0 20px rgba(141, 168, 252, 0.6),
                 0 0 35px rgba(141, 168, 252, 0.4),
                 0 0 50px rgba(141, 168, 252, 0.3);
}

/* Cartes OFFRES - Même taille que les cartes ADN */
.services .service-card {
    padding: 50px 40px; /* Même padding que les cartes ADN */
    border-radius: 24px; /* Même border-radius que les cartes ADN */
}

.service-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    transition: var(--transition-smooth);
}

.service-name-green {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(169, 255, 210, 0.6),
                 0 0 35px rgba(169, 255, 210, 0.4),
                 0 0 50px rgba(169, 255, 210, 0.3);
}

.service-name-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(167, 226, 255, 0.6),
                 0 0 35px rgba(167, 226, 255, 0.4),
                 0 0 50px rgba(167, 226, 255, 0.3);
}

.service-name-pink {
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(255, 112, 174, 0.6),
                 0 0 35px rgba(255, 112, 174, 0.4),
                 0 0 50px rgba(255, 112, 174, 0.3);
}

.service-name-violet {
    color: var(--accent-violet);
    text-shadow: 0 0 20px rgba(141, 168, 252, 0.6),
                 0 0 35px rgba(141, 168, 252, 0.4),
                 0 0 50px rgba(141, 168, 252, 0.3);
}

.service-card:hover .service-title {
    background: linear-gradient(90deg, var(--white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card[data-color="lens"]:hover .service-title {
    background: linear-gradient(90deg, var(--white), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card[data-color="frame"]:hover .service-title {
    background: linear-gradient(90deg, var(--white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card[data-color="echoes"]:hover .service-title {
    background: linear-gradient(90deg, var(--white), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card[data-color="impulse"]:hover .service-title {
    background: linear-gradient(90deg, var(--white), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: rgba(249, 249, 255, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-description {
    color: rgba(249, 249, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 16px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(249, 249, 255, 0.7);
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 15px;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
}

.service-card[data-color="frame"] .service-features li::before {
    color: var(--accent-cyan);
}

.service-card[data-color="lens"] .service-features li::before {
    color: var(--accent-green);
}

.service-card[data-color="echoes"] .service-features li::before {
    color: var(--accent-pink);
}

.service-card[data-color="impulse"] .service-features li::before {
    color: var(--accent-violet);
}

/* =============== NOTRE MODÈLE SECTION =============== */
.notre-modele {
    background: var(--night-blue);
    padding: var(--section-padding);
}

.modele-content-text {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
}

.modele-paragraph {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 35px;
}

.modele-paragraph:last-child {
    margin-bottom: 0;
}

/* =============== SECTION RESPIRATION - CLAIM =============== */
.respiration-section {
    padding: 30px 0 15px 0; /* Padding-bottom réduit pour rapprocher du contenu suivant */
    background: var(--night-blue);
    position: relative;
    overflow: hidden;
}

/* Fond de briques blanches très discret - mur en construction */
.respiration-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/brick-texture-white.jpg') center/cover no-repeat;
    opacity: 0.06;
    filter: blur(1px) grayscale(0.4) brightness(1.2);
    z-index: 0;
}

/* Gradient de fondu vers le haut (section visages) et vers le bas */
.respiration-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
                                rgba(3, 3, 33, 0.85) 0%,
                                rgba(3, 3, 33, 0.70) 15%,
                                rgba(3, 3, 33, 0.60) 50%,
                                rgba(3, 3, 33, 0.70) 85%,
                                rgba(3, 3, 33, 0.85) 100%);
    z-index: 0;
}

.respiration-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Sous-titre "Quelques visages" */
.equipe-subtitle-visages {
    margin-top: 24px;
    text-align: center;
}

.equipe-subtitle-visages span {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px); /* Même taille que "4 OFFRES COMPLÉMENTAIRES" */
    font-weight: 400; /* Lissé de 900 à 400 pour plus de finesse */
    letter-spacing: 0.08em; /* Augmenté pour compenser le poids plus léger */
    text-transform: uppercase;
    color: #F9F9FF; /* Blanc pur sans halo */
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Carousel équipe */
.equipe-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin: 0;
    padding: 0 60px;
}

.equipe-carousel {
    display: flex;
    gap: 50px;
    width: max-content;
    padding: 50px 0 70px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: calc(100vw - 120px);
}

.equipe-carousel::-webkit-scrollbar {
    display: none;
}

.equipe-carousel .equipe-member {
    text-align: center;
    transition: var(--transition-smooth);
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

/* Boutons navigation avec K - Style pillule avec gradient - Plus visibles */
.equipe-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 55px;
    border-radius: 30px;
    background: rgba(3, 3, 33, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(167, 226, 255, 0.3);
    cursor: pointer;
    z-index: 100;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.equipe-nav-btn:hover {
    background: rgba(3, 3, 33, 0.95);
    border-color: rgba(167, 226, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(167, 226, 255, 0.3);
}

/* Bordure dégradé rose/violet/bleu filaire pour boutons pillule */
.equipe-k-button-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, 
        #FF70AE 0%, 
        #C6A7FF 50%, 
        #A7E2FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: all 200ms ease;
    z-index: 99;
}

.equipe-nav-btn:hover .equipe-k-button-border {
    opacity: 1;
    padding: 2.5px;
}

.equipe-nav-prev {
    left: 20px;
}

.equipe-nav-next {
    right: 20px;
}

/* Logo K dans les boutons - adapté pour forme pillule */
.equipe-nav-content {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 101;
    pointer-events: none;
}

.equipe-nav-k {
    width: 16px;
    height: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.equipe-nav-arrow {
    font-size: 20px;
    font-weight: 400;
    color: rgba(249, 249, 255, 0.95);
    opacity: 0.95;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    pointer-events: none;
}

.equipe-nav-btn:hover .equipe-nav-k {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.equipe-nav-btn:hover .equipe-nav-arrow {
    opacity: 1;
    color: #F9F9FF;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.equipe-carousel .equipe-photo {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    position: relative;
}

/* Halo rose derrière le texte */
.respiration-halo-rose {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}

.respiration-halo-rose::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 112, 174, 0.4) 0%,
        rgba(255, 112, 174, 0.25) 40%,
        transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    animation: haloRosePulse 3s ease-in-out infinite;
}

@keyframes haloRosePulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1.2);
    }
}

/* Halo bleu derrière le texte */
.respiration-halo-bleu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}

.respiration-halo-bleu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse at center, 
        rgba(141, 168, 252, 0.4) 0%,
        rgba(167, 226, 255, 0.25) 40%,
        transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    animation: haloBleuPulse 3s ease-in-out infinite;
}

@keyframes haloBleuPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1.2);
    }
}

/* Ligne unique avec toute la phrase - agrandi */
.respiration-single-line {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

/* "Construire" en bleu icid plein avec halo bleu icid (cohérence avec section Promesse) */
.word-full-white {
    color: #A7E2FF; /* Bleu icid au lieu de blanc */
    font-weight: 900;
    text-shadow: 0 0 15px rgba(167, 226, 255, 0.5),
                 0 0 25px rgba(167, 226, 255, 0.4),
                 0 0 35px rgba(167, 226, 255, 0.3); /* Halo bleu icid */
}

/* Traitement spécial rose charte pour "Construire ensemble, une brique après l'autre" */
.word-rose-plein {
    color: #FF70AE; /* Rose charte KROMATIC (P 211 C) */
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 112, 174, 0.5),
                 0 0 25px rgba(255, 112, 174, 0.4),
                 0 0 35px rgba(255, 112, 174, 0.3); /* Halo rose */
}

/* Mots en contour rose (pour "Construire" et "ensemble") */
.word-rose-outline {
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1.5px #FF70AE; /* Contour rose charte */
    text-stroke: 1.5px #FF70AE;
    filter: drop-shadow(0 0 15px rgba(255, 112, 174, 0.5)) 
            drop-shadow(0 0 25px rgba(255, 112, 174, 0.4))
            drop-shadow(0 0 35px rgba(255, 112, 174, 0.3)); /* Halo rose */
    letter-spacing: 0.02em;
}

/* Mots en bleu violet plein (pour "Le fond K La forme K La performance") */
.word-full-violet {
    color: #8DA8FC; /* Bleu violet charte (P 7451 C) */
    font-weight: 900;
    text-shadow: 0 0 15px rgba(141, 168, 252, 0.5),
                 0 0 25px rgba(141, 168, 252, 0.4),
                 0 0 35px rgba(141, 168, 252, 0.3); /* Halo bleu violet */
}

/* Mots en vert plein (pour "L'hybridation") */
.word-full-green {
    color: #96E8C3; /* Vert charte */
    font-weight: 900;
    text-shadow: 0 0 15px rgba(150, 232, 195, 0.5),
                 0 0 25px rgba(150, 232, 195, 0.4),
                 0 0 35px rgba(150, 232, 195, 0.3); /* Halo vert */
}

/* Mots en contour vert (pour "n'est pas un paradoxe,") */
.word-outline-green {
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1.5px #96E8C3; /* Contour vert charte */
    text-stroke: 1.5px #96E8C3;
    filter: drop-shadow(0 0 15px rgba(150, 232, 195, 0.5)) 
            drop-shadow(0 0 25px rgba(150, 232, 195, 0.4))
            drop-shadow(0 0 35px rgba(150, 232, 195, 0.3)); /* Halo vert */
    letter-spacing: 0.02em;
}

/* "ensemble" et "c'est un levier" - police détourée avec halo bleu identique */
.word-outline-gradient {
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1.5px #A7E2FF; /* Contour bleu icid au lieu de blanc */
    text-stroke: 1.5px #A7E2FF;
    filter: drop-shadow(0 0 15px rgba(167, 226, 255, 0.5)) 
            drop-shadow(0 0 25px rgba(167, 226, 255, 0.4))
            drop-shadow(0 0 35px rgba(167, 226, 255, 0.3)); /* Halo bleu icid */
    letter-spacing: 0.02em;
}

/* Séparateur blanc sous respiration "Construire ensemble" */
.respiration-separator-line {
    width: 80px;
    height: 2px;
    margin: 40px auto 0 auto; /* Marge top 40px pour espacement */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(249, 249, 255, 0.4) 20%,
        rgba(249, 249, 255, 0.6) 50%,
        rgba(249, 249, 255, 0.4) 80%,
        transparent 100%
    );
}

/* Classes supprimées - tout est maintenant sur une ligne unique */

/* ===== OPTION 3 : DISPOSITION ASYMÉTRIQUE ===== */
/* Pour activer l'option 3 : 
   - Remplacer "respiration-option2" par "respiration-option3" dans le HTML
   - Décommenter le CSS ci-dessous
*/
/*
.respiration-option3 .respiration-block {
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.respiration-option3 .respiration-line:first-child {
    align-self: flex-start;
    text-align: left;
    padding-left: 0;
}

.respiration-option3 .respiration-line:last-child {
    align-self: flex-end;
    text-align: right;
    padding-right: 0;
}

.respiration-option3 .respiration-line {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-pink), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: auto;
    display: inline-block;
}
*/

/* Mobile */
@media (max-width: 768px) {
    /* Titre "4 OFFRES COMPLÉMENTAIRES" responsive - Même style que Hero Expertises */
    .section-title-offres {
        font-size: clamp(14px, 3vw, 18px); /* Harmonisé avec sous-titre Promesse mobile */
        margin: 0;
    }
    
    /* Header équipe responsive */
    .equipe-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .equipe-cta-link {
        font-size: clamp(13px, 3.5vw, 15px);
        padding: 6px 12px;
    }
    
    /* Header équipe gauche responsive */
    .equipe-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .section-title-offres-left {
        font-size: clamp(14px, 3vw, 18px);
    }
    
    .equipe-cta-link-left {
        font-size: clamp(13px, 3.5vw, 15px);
        padding: 6px 12px;
    }
    
    /* Section Quelques K' responsive */
    .quelques-k-section {
        padding: 60px 0;
    }
    
    .quelques-k-link {
        padding: 40px 20px;
        border-radius: 15px;
    }
    
    .quelques-k-title {
        font-size: clamp(36px, 8vw, 60px);
        margin-bottom: 10px;
        gap: clamp(10px, 3vw, 15px);
        flex-wrap: wrap;
    }
    
    .quelques-k-logo {
        width: clamp(40px, 10vw, 60px);
    }
    
    .quelques-k-subtitle {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 15px;
    }
    
    .quelques-k-arrow {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    /* Titre "Le fond K La forme K La performance" responsive */
    .services-single-line {
        font-size: clamp(18px, 5vw, 34px);
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .services-k-separator {
        height: 16px;
    }
    
    .services-halo-bleu {
        width: 250px;
        height: 75px;
    }
    
    .services-halo-bleu::before {
        width: 250px;
        height: 60px;
    }
    
    .respiration-line {
        flex-direction: column;
        gap: 10px;
    }
    
    .respiration-section {
        padding: 50px 0;
    }
    
    .equipe-subtitle-visages span {
        font-size: clamp(24px, 5vw, 42px); /* Responsive comme le titre des offres */
    }
    
    .equipe-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        margin: 0;
        padding: 0 55px;
    }
    
    .equipe-carousel {
        gap: 30px;
        padding: 35px 0 55px 0;
        max-width: calc(100vw - 110px);
    }
    
    .equipe-carousel .equipe-member {
        min-width: 280px;
        max-width: 280px;
    }
    
    .equipe-carousel .equipe-photo {
        margin-bottom: 20px;
    }
    
    .equipe-name {
        font-size: clamp(11px, 2.8vw, 14px);
        gap: 6px;
        flex-direction: column;
    }
    
    .equipe-nav-btn {
        width: 65px;
        height: 45px;
        border-radius: 25px;
        padding: 0 10px;
    }
    
    .equipe-nav-content {
        gap: 4px;
    }
    
    .equipe-nav-k {
        width: 15px;
    }
    
    .equipe-nav-arrow {
        font-size: 17px;
    }
    
    .equipe-k-button-border {
        border-radius: 20px;
        padding: 1.5px;
    }
    
    .equipe-nav-btn:hover .equipe-k-button-border {
        padding: 2px;
    }
}

.respiration-line:first-child {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.respiration-line:last-child {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .respiration-section {
        padding: 40px 0;
    }
    
    .respiration-block {
        gap: 15px;
    }
    
    .respiration-single-line {
        font-size: clamp(18px, 5vw, 34px);
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .word-outline-gradient {
        font-weight: 400;
        -webkit-text-stroke: 1.2px #F9F9FF;
        text-stroke: 1.2px #F9F9FF;
        filter: drop-shadow(0 0 12px rgba(141, 168, 252, 0.5)) 
                drop-shadow(0 0 20px rgba(141, 168, 252, 0.4));
    }
    
    .respiration-halo-rose,
    .respiration-halo-bleu {
        width: 300px;
        height: 100px;
    }
    
    .respiration-halo-rose::before,
    .respiration-halo-bleu::before {
        width: 300px;
        height: 80px;
    }
    
    .hybridation-inline .respiration-halo-bleu {
        width: 300px;
        height: 100px;
    }
    
    .hybridation-inline .respiration-halo-bleu::before {
        width: 300px;
        height: 80px;
    }
}

/* =============== ADN & CONVICTIONS FUSIONNÉS =============== */
.adn-convictions {
    background: url('../images/hero-background.jpg') center/cover no-repeat;
    background-color: var(--night-blue);
    transform: scaleY(-1);
    padding: 80px 0;
    border-top: 1px solid rgba(167, 226, 255, 0.1);
    position: relative;
}

.adn-convictions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 33, 0.85);
    z-index: 0;
}

/* Halo de fond supprimé - pas de ::after */

.adn-convictions .container {
    transform: scaleY(-1);
    position: relative;
    z-index: 2;
}

/* Grid 2 colonnes ADN / MÉTHODE */
.adn-methode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Hybridation en haut - espacements stricts */
.hybridation-inline {
    width: 100%;
    padding: 0 0 24px 0;
    text-align: center;
}

.hybridation-inline .respiration-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.hybridation-inline .respiration-single-line {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.hybridation-inline .respiration-halo-bleu {
    width: 400px;
    height: 120px;
}

.hybridation-inline .respiration-halo-bleu::before {
    width: 400px;
    height: 100px;
}

.adn-section,
.methode-section {
    width: 100%;
    border: 1px solid rgba(167, 226, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    background: rgba(3, 3, 33, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Sections empilées verticalement - bordures complètes */

.adn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
    transition: var(--transition-smooth);
}

.methode-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-violet));
    transition: var(--transition-smooth);
}

.adn-section:hover,
.methode-section:hover {
    border-color: rgba(167, 226, 255, 0.4);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.1);
    transform: translateY(-2px);
}

.adn-section:hover::before,
.methode-section:hover::before {
    width: 100%;
}

/* Responsive - grid devient 1 colonne sur mobile */
@media (max-width: 968px) {
    .adn-methode-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .adn-section,
    .methode-section {
        padding: 16px;
    }
    
    .hybridation-inline {
        padding: 0 0 16px 0;
    }
    
    .hybridation-inline .respiration-block {
        gap: 8px;
    }
    
    .hybridation-inline .respiration-single-line {
        font-size: clamp(18px, 5vw, 34px);
        gap: 10px;
        flex-wrap: wrap;
    }
}

/* Anciens styles - supprimés car blocs séparés maintenant */
.adn-bloc:hover,
.convictions-bloc:hover {
    border-color: rgba(167, 226, 255, 0.4);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.1);
    transform: translateY(-5px);
}

.bloc-header {
    margin-bottom: 35px;
    text-align: left;
}

.bloc-subtitle {
    font-family: var(--font-display);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(249, 249, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bloc-subtitle-with-k {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(249, 249, 255, 0.85);
    text-shadow: 0 0 20px rgba(249, 249, 255, 0.3),
                 0 0 30px rgba(249, 249, 255, 0.2);
    line-height: 1.5;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.bloc-k-separator {
    height: 14px;
    width: auto;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(167, 226, 255, 0.3)) drop-shadow(0 0 10px rgba(255, 112, 174, 0.3));
    flex-shrink: 0;
}

.bloc-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #A9FFD2;
    text-shadow: -15px 0 20px rgba(249, 249, 255, 0.2),
                 -25px 0 30px rgba(249, 249, 255, 0.15),
                 -35px 0 40px rgba(249, 249, 255, 0.1);
    text-align: left;
    margin-bottom: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Titre rose pour NOS CONVICTIONS */
.bloc-title-pink {
    color: #8DA8FC;
    text-shadow: -15px 0 20px rgba(249, 249, 255, 0.2),
                 -25px 0 30px rgba(249, 249, 255, 0.15),
                 -35px 0 40px rgba(249, 249, 255, 0.1);
}

.bloc-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bloc-text {
    font-family: var(--font-body);
    font-size: clamp(19px, 2vw, 22px);
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: left;
}

/* CTA "Parlons de votre prochain projet" après ADN/Convictions */
.adn-discover {
    margin-top: 60px;
    text-align: center;
}

.adn-discover-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(249, 249, 255, 0.7);
    transition: var(--transition-smooth);
    padding: 12px 0;
    text-shadow: 0 0 15px rgba(141, 168, 252, 0.5),
                 0 0 25px rgba(141, 168, 252, 0.4),
                 0 0 35px rgba(141, 168, 252, 0.3);
}

.adn-discover-link i {
    font-size: 14px;
    transition: var(--transition-smooth);
    animation: arrowBounce 2s ease-in-out infinite;
}

.adn-discover-link:hover {
    color: #F9F9FF;
    text-shadow: 0 0 20px rgba(141, 168, 252, 0.7),
                 0 0 30px rgba(141, 168, 252, 0.6),
                 0 0 40px rgba(141, 168, 252, 0.5);
}

.adn-discover-link:hover i {
    animation-play-state: paused;
    transform: translateY(5px);
}

/* =============== ABOUT SECTION (LEGACY) =============== */
.about {
    background: var(--night-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-description {
    color: rgba(249, 249, 255, 0.8);
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.5;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: left;
}

.value-item i {
    font-size: 32px;
    color: var(--accent-cyan);
    margin-bottom: 18px;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--white);
}

.value-item p {
    color: rgba(249, 249, 255, 0.6);
    font-size: 14px;
}

.about-visual {
    position: relative;
    height: 550px;
}

.visual-card {
    position: absolute;
    background: rgba(3, 3, 33, 0.8);
    padding: 40px;
    border: 1px solid rgba(167, 226, 255, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.visual-card:hover {
    background: rgba(3, 3, 33, 0.95);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.2);
    border-color: var(--accent-cyan);
}

.visual-card i {
    font-size: 40px;
    color: var(--accent-cyan);
    margin-bottom: 18px;
}

.visual-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 8s infinite ease-in-out;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float 8s infinite ease-in-out 2.6s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 8s infinite ease-in-out 5.2s;
}

/* =============== CONTACT SECTION =============== */
.contact {
    background: radial-gradient(ellipse at bottom, rgba(255, 112, 174, 0.08) 0%, var(--night-blue) 70%);
    border-top: 1px solid rgba(167, 226, 255, 0.1);
}

/* =============== NOS CONVICTIONS - TEXTE CENTRÉ =============== */
.convictions-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.convictions-text {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* =============== L'ÉQUIPE =============== */
/* =============== ÉQUIPE - Intégrée dans respiration section =============== */

/* Frise photos - styles des membres conservés */
.equipe-frise .equipe-member {
    text-align: center;
    transition: var(--transition-smooth);
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
}

.equipe-carousel .equipe-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 3px solid rgba(167, 226, 255, 0.25);
    transition: var(--transition-smooth);
}

/* Halo radial derrière la photo */
.equipe-carousel .equipe-photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    transition: opacity 400ms ease;
}

.equipe-carousel .equipe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.respiration-block {
/* Halo rose pour Victoria et Anaïs */
.equipe-member[data-halo="pink"] .equipe-photo::before {
    background: radial-gradient(circle, rgba(255, 112, 174, 0.6) 0%, transparent 70%);
}

.equipe-member[data-halo="pink"] .equipe-photo {
    border-color: rgba(255, 112, 174, 0.3);
    box-shadow: 0 15px 40px rgba(255, 112, 174, 0.3),
                0 0 30px rgba(255, 112, 174, 0.25);
}

.equipe-member[data-halo="pink"]:hover .equipe-photo::before {
    opacity: 0.7;
}

.equipe-member[data-halo="pink"]:hover .equipe-photo {
    border-color: rgba(255, 112, 174, 0.7);
    box-shadow: 0 25px 70px rgba(255, 112, 174, 0.6),
                0 0 50px rgba(255, 112, 174, 0.5);
    transform: translateY(-8px);
}

/* Halo vert pour Marc Andréa et Julie */
.equipe-member[data-halo="green"] .equipe-photo::before {
    background: radial-gradient(circle, rgba(150, 232, 195, 0.6) 0%, transparent 70%);
}

.equipe-member[data-halo="green"] .equipe-photo {
    border-color: rgba(169, 255, 210, 0.3);
    box-shadow: 0 15px 40px rgba(169, 255, 210, 0.3),
                0 0 30px rgba(169, 255, 210, 0.25);
}

.equipe-member[data-halo="green"]:hover .equipe-photo::before {
    opacity: 0.7;
}

.equipe-member[data-halo="green"]:hover .equipe-photo {
    border-color: rgba(169, 255, 210, 0.7);
    box-shadow: 0 25px 70px rgba(169, 255, 210, 0.6),
                0 0 50px rgba(169, 255, 210, 0.5);
    transform: translateY(-8px);
}

/* Halo cyan pour Fabien */
.equipe-member[data-halo="cyan"] .equipe-photo::before {
    background: radial-gradient(circle, rgba(167, 226, 255, 0.6) 0%, transparent 70%);
}

.equipe-member[data-halo="cyan"] .equipe-photo {
    border-color: rgba(167, 226, 255, 0.3);
    box-shadow: 0 15px 40px rgba(167, 226, 255, 0.3),
                0 0 30px rgba(167, 226, 255, 0.25);
}

.equipe-member[data-halo="cyan"]:hover .equipe-photo::before {
    opacity: 0.7;
}

.equipe-member[data-halo="cyan"]:hover .equipe-photo {
    border-color: rgba(167, 226, 255, 0.7);
    box-shadow: 0 25px 70px rgba(167, 226, 255, 0.6),
                0 0 50px rgba(167, 226, 255, 0.5);
    transform: translateY(-8px);
}

/* Halo violet pour Tanya */
.equipe-member[data-halo="violet"] .equipe-photo::before {
    background: radial-gradient(circle, rgba(141, 168, 252, 0.6) 0%, transparent 70%);
}

.equipe-member[data-halo="violet"] .equipe-photo {
    border-color: rgba(141, 168, 252, 0.3);
    box-shadow: 0 15px 40px rgba(141, 168, 252, 0.3),
                0 0 30px rgba(141, 168, 252, 0.25);
}

.equipe-member[data-halo="violet"]:hover .equipe-photo::before {
    opacity: 0.7;
}

.equipe-member[data-halo="violet"]:hover .equipe-photo {
    border-color: rgba(141, 168, 252, 0.7);
    box-shadow: 0 25px 70px rgba(141, 168, 252, 0.6),
                0 0 50px rgba(141, 168, 252, 0.5);
    transform: translateY(-8px);
}

.equipe-member:hover .equipe-photo img {
    transform: scale(1.05);
}

.equipe-name {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.equipe-prenom {
    font-weight: 300; /* Light - réduit de 700 à 300 */
    color: var(--white);
}

.equipe-fonction {
    font-weight: 400;
    color: rgba(249, 249, 255, 0.7);
    font-size: clamp(12px, 1.2vw, 14px);
}

.equipe-separator {
    font-weight: 400;
    color: rgba(249, 249, 255, 0.4);
    margin: 0 6px;
    font-size: clamp(12px, 1.2vw, 14px);
}

.equipe-role {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.7vw, 19px);
    font-weight: 400;
    color: rgba(249, 249, 255, 0.75);
    letter-spacing: 0.01em;
    line-height: 1.5;
}
    line-height: 1.5;
}

@media (max-width: 768px) {
    .equipe {
        padding: var(--section-padding-mobile);
    }
    
    .equipe-grid {
        gap: 30px;
        padding: 20px 0 30px 0;
    }
    
    .equipe-member {
        min-width: 250px;
        max-width: 250px;
    }
}

/* =============== CONTACT - LAYOUT 2 COLONNES =============== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Chapeau (petit texte en haut) - PARLONS DE... */
.contact-subtitle {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    color: rgba(249, 249, 255, 0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grand titre - CONTACT */
.contact-main-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-pink), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 12px;
}

/* =============== SECTION UN MODÈLE UNIQUE =============== */
.modele-unique-section {
    padding: 100px 0;
    background: var(--night-blue);
    position: relative;
}

/* Fond aurore boréale étendu sur plusieurs sections */
.aurore-background {
    background-image: url('../images/aurore-blue-gradient.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fond fixe pour effet parallax */
    position: relative;
}

.aurore-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 33, 0.3); /* Overlay léger pour transparence */
    z-index: 0;
}

.aurore-background > * {
    position: relative;
    z-index: 1;
}

/* Section ADN avec fond holographique */
.adn-section {
    position: relative;
}

.adn-section::before {
    display: none; /* Pas besoin d'overlay supplémentaire */
}

.adn-section .container {
    position: relative;
    z-index: 1;
}

.modele-unique-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.modele-unique-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #F9F9FF;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(249, 249, 255, 0.3),
                 0 0 30px rgba(249, 249, 255, 0.2);
}

.modele-unique-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modele-unique-text p {
    font-family: var(--font-body);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.85);
    margin: 0;
    text-align: left;
}

/* =============== SECTION ADN - LISTE NUMÉROTÉE =============== */
/* Grille 2 colonnes ADN + NOTRE MÉTHODE */
.adn-methode-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.adn-col,
.methode-col {
    display: flex;
    flex-direction: column;
}

/* Encadré avec dégradé léger */
.adn-principles-card {
    background: linear-gradient(
        135deg,
        rgba(255, 112, 174, 0.03) 0%,
        rgba(141, 168, 252, 0.03) 50%,
        rgba(150, 232, 195, 0.03) 100%
    );
    border: 1px solid rgba(249, 249, 255, 0.08);
    border-radius: 20px;
    padding: 50px 35px;
    margin: 0 auto;
    max-width: 1000px;
}

.adn-principles {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    gap: 40px; /* Gap entre colonnes réduit */
}

.principle {
    display: flex;
    flex-direction: column; /* Stack vertical */
    gap: 12px;
    align-items: flex-start;
}

.principle .number {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 60px); /* Plus grand */
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

/* Couleur rose pour 01 RELATION PARTENARIALE */
.principle:nth-child(1) .number {
    color: #FF70AE; /* Rose charte */
    text-shadow: 0 0 20px rgba(255, 112, 174, 0.4);
}

/* Couleur verte pour 02 PROACTIVITÉ & ÉVOLUTION */
.principle:nth-child(2) .number {
    color: #96E8C3; /* Vert charte */
    text-shadow: 0 0 20px rgba(150, 232, 195, 0.4);
}

.principle-content h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px); /* Aligné sur service-title */
    font-weight: 800; /* Augmenté de 600 à 800 comme LENS */
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em; /* Comme LENS */
    text-transform: uppercase; /* MAJUSCULES */
    text-align: left; /* Titre aligné à gauche */
}

.principle-content p {
    font-size: clamp(16px, 1.7vw, 19px);
    color: rgba(249, 249, 255, 0.75);
    line-height: 1.4;
    margin: 0;
    text-align: left; /* Texte aligné à gauche */
}
    line-height: 1.4;
    margin: 0;
}

/* =============== SECTION ADN & MÉTHODE =============== */
.adn-methode-section {
    padding: 100px 0;
    background: var(--night-blue);
}

.adn-methode-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(167, 226, 255, 0.05);
    border: 1px solid rgba(167, 226, 255, 0.1);
}

.adn-methode-card {
    background: rgba(3, 3, 33, 0.6);
    padding: 60px 45px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.adn-methode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.adn-methode-card:hover::before {
    width: 100%;
}

.adn-methode-card:hover {
    background: rgba(3, 3, 33, 0.9);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.15);
}

.adn-methode-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1;
    opacity: 0.15;
    color: var(--accent-cyan);
}

.adn-methode-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #F9F9FF;
    margin-bottom: 30px;
}

.adn-methode-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adn-methode-content p {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.8);
    margin: 0;
}

/* =============== CONTACT SECTION =============== */
/* Contact centré avec halo blanc */
.contact-main-title.contact-centered {
    color: #F9F9FF;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 0 20px rgba(249, 249, 255, 0.3),
                 0 0 30px rgba(249, 249, 255, 0.2),
                 0 0 40px rgba(249, 249, 255, 0.15);
    text-align: center;
}

.contact-description {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.8vw, 20px);
    color: rgba(249, 249, 255, 0.8);
    line-height: 1.4;
}

/* Tagline contact centrée */
.contact-description.contact-tagline {
    text-align: center;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-form-column {
    width: 100%;
}

/* Ancien contact-content - garder pour compatibilité */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 70px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.contact-info > p {
    color: rgba(249, 249, 255, 0.7);
    margin-bottom: 45px;
    line-height: 1.5;
    font-size: 17px;
}

.contact-details {
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: var(--night-blue);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: rgba(249, 249, 255, 0.5);
    font-weight: 700;
}

.contact-item a,
.contact-item p {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--accent-cyan);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: rgba(3, 3, 33, 0.6);
    border: 1px solid rgba(167, 226, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: var(--night-blue);
    border-color: transparent;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(3, 3, 33, 0.6);
    padding: 50px;
    border: 1px solid rgba(167, 226, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(167, 226, 255, 0.2);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
    background: rgba(3, 3, 33, 0.4);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(3, 3, 33, 0.6);
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(249, 249, 255, 0.4);
}

/* Contact Form Submit Button */
.btn-contact-submit {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet)) !important;
    color: var(--night-blue) !important;
    border: none;
    font-weight: 600;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan)) !important;
    box-shadow: 0 15px 50px rgba(167, 226, 255, 0.4);
}

.btn-contact-submit span,
.btn-contact-submit .fas {
    color: var(--night-blue);
}

/* =============== À PROPOS SECTION =============== */
.apropos {
    padding: var(--section-padding);
    background: var(--night-blue);
}

.apropos-content {
    max-width: 1200px;
    margin: 0 auto;
}

.apropos-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag-small {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(167, 226, 255, 0.08);
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(167, 226, 255, 0.25);
}

.apropos-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-pink), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apropos-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.apropos-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.apropos-intro {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    letter-spacing: -0.01em;
}

.apropos-description {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.5;
    color: rgba(249, 249, 255, 0.8);
    font-weight: 400;
}

.apropos-values {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 30px;
    background: rgba(3, 3, 33, 0.6);
    border: 1px solid rgba(167, 226, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.value-item:hover {
    background: rgba(3, 3, 33, 0.8);
    border-color: rgba(167, 226, 255, 0.3);
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.value-item p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(249, 249, 255, 0.7);
    line-height: 1.4;
}

/* Mobile styles for À Propos */
@media (max-width: 968px) {
    .apropos-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* =============== FOOTER =============== */
.footer {
    background: rgba(3, 3, 33, 0.98);
    color: rgba(249, 249, 255, 0.7);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(167, 226, 255, 0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1);
    transition: var(--transition-smooth);
}

.footer-brand:hover .footer-logo {
    filter: brightness(1.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand p {
    margin-top: 12px;
    opacity: 0.6;
    font-size: 14px;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-family: var(--font-display);
    color: white;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 25px;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 35px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-legal a:hover {
    color: white;
}

/* =============== FOOTER SIMPLIFIÉ =============== */
.footer-content-simple {
    text-align: center;
    padding-bottom: 50px;
}

.footer-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-claim {
    margin-top: 0;
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer Contact + Social - Alignés horizontalement */
.footer-buttons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-contact {
    margin: 0;
}

.footer-social-center {
    margin: 0;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(169, 255, 210, 0.1);
    border: 1px solid rgba(169, 255, 210, 0.3);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-email:hover {
    background: rgba(169, 255, 210, 0.2);
    border-color: var(--accent-green);
    box-shadow: 0 10px 40px rgba(169, 255, 210, 0.3);
}

.footer-email i {
    font-size: 18px;
    color: var(--accent-green);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(167, 226, 255, 0.1);
    border: 1px solid rgba(167, 226, 255, 0.3);
    border-radius: 0;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: var(--night-blue);
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(167, 226, 255, 0.3);
}

.social-btn i {
    font-size: 18px;
}

.footer-bottom-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom-simple p {
    margin: 0;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 1200px) {
    .container {
        padding: 0 50px; /* Augmenté de 40px à 50px pour tablet */
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 50px; /* R\u00e9duit padding pour exploiter la largeur sur tablette */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .about-visual {
        height: 450px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Section Quelques K' tablette */
    .quelques-k-title {
        font-size: clamp(40px, 7vw, 70px);
        gap: clamp(12px, 2.5vw, 20px);
    }
    
    .quelques-k-logo {
        width: clamp(45px, 8vw, 70px);
    }
    
    .quelques-k-link {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px; /* Réduit à 30px pour mobile sans débordement */
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
    
    /* Hero logo responsive - même largeur relative */
    .hero-logo-main {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .hero-logo-main .logo-kromatic-main {
        height: 70px; /* Augmenté de 60px à 70px */
        max-width: 90%; /* Augmenté de 85% à 90% */
    }
    
    /* Hero main title responsive - 2 lignes - Exo 2 Black UPPERCASE - Optimisé pour largeur mobile */
    .hero-main-title {
        max-width: 95%; /* Augmenté de 90% à 95% pour exploiter la largeur */
        padding: 0 10px; /* Réduit pour maximiser l'espace */
    }
    
    .hero-main-title .hero-line {
        font-size: clamp(32px, 9vw, 64px); /* Optimisé mobile : 32-64px pour meilleure lisibilité */
        line-height: 1.05;
        margin-bottom: 2px;
        white-space: normal; /* Permet le wrap sur mobile si nécessaire */
        word-wrap: break-word; /* Force la coupe des mots longs si besoin */
    }
    
    .hero-main-title .hero-line:last-child {
        margin-bottom: 0;
    }
    
    /* Hero expertises responsive - SANS wrap sur mobile, même largeur que le logo */
    .hero-expertises-white {
        flex-wrap: nowrap; /* Pas de retour à la ligne sur mobile */
        max-width: 95%; /* Augmenté pour exploiter la largeur */
        gap: 6px; /* Réduit pour gagner de l'espace */
        overflow-x: auto; /* Scroll horizontal si nécessaire */
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .hero-expertises-white::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Opera */
    }
    
    .hero-expertises-white p {
        font-size: clamp(14px, 3vw, 18px); /* Réduit de 16-22px à 14-18px pour tenir sur une ligne */
        white-space: nowrap; /* Pas de wrap dans le texte */
    }
    
    .expertise-separator {
        font-size: clamp(12px, 2vw, 16px); /* Réduit aussi les bullets en mobile */
        margin: 0 4px; /* Réduit l'espacement */
    }
    
    /* Nouveaux CTAs Hero responsive */
    .hero-cta-item {
        gap: 6px;
    }
    
    /* Séparateur blanc responsive mobile */
    .hero-separator-line {
        width: 50px;
        margin: 25px auto 50px auto; /* Augmenté la marge du bas de 35px à 50px */
    }
    
    /* Trait blanc - SUPPRIMÉ */
    /* .hero-cta-separator {
        width: 50px;
    } */
    
    .hero-cta-text {
        font-size: clamp(18px, 5vw, 22px); /* Augmenté */
        font-weight: 600; /* Semi-bold */
    }
    
    .hero-cta-link {
        gap: 6px; /* Réduit de 8px à 6px pour mobile */
    }
    
    .hero-k-button {
        width: 74px; /* Augmenté de 68px */
        height: 46px; /* Augmenté de 40px */
        border-radius: 23px;
    }
    
    /* Hover mobile - width ajusté */
    .hero-cta-link:hover .hero-k-button::before {
        width: 210px; /* Optimisé : 210px pour mobile */
    }
    
    .hero-cta-link:hover .hero-k-button-border {
        width: 210px; /* Optimisé : 210px pour mobile */
    }
    
    /* Extension plus grande pour "Se rencontrer" (texte plus long) */
    .hero-cta-violet:hover .hero-k-button::before {
        width: 250px; /* Optimisé : 250px pour mobile */
    }
    
    .hero-cta-violet:hover .hero-k-button-border {
        width: 250px; /* Optimisé : 250px pour mobile */
    }
    
    .hero-cta {
        gap: 40px; /* Augmenté de 30px à 40px pour mobile */
    }
    
    .hero-k-button-border {
        border-radius: 23px; /* Augmenté de 20px */
    }
    
    .hero-k-content {
        gap: 4px;
    }
    
    .hero-k-icon {
        width: 17px; /* Augmenté de 15px */
    }
    
    .hero-k-arrow {
        font-size: 19px; /* Augmenté de 17px */
    }
    
    /* Hero discover link responsive - SUPPRIMÉ */
    /* .hero-discover-link {
        font-size: clamp(13px, 3.5vw, 15px);
        -webkit-text-stroke: 1.2px #F9F9FF;
        text-stroke: 1.2px #F9F9FF;
    } */
    
    /* Section UN MODÈLE UNIQUE responsive */
    .modele-unique-section {
        padding: 60px 0;
    }
    
    .modele-unique-content {
        max-width: 95%;
    }
    
    .modele-unique-title {
        font-size: clamp(28px, 6vw, 48px);
        margin-bottom: 40px;
    }
    
    .modele-unique-text {
        gap: 25px;
    }
    
    .modele-unique-text p {
        font-size: clamp(16px, 4vw, 19px);
        text-align: center;
    }
    
    /* Section ADN & MÉTHODE responsive */
    .adn-methode-section {
        padding: 60px 0;
    }
    
    .adn-methode-grid {
        grid-template-columns: 1fr; /* Une colonne sur mobile */
        gap: 2px;
    }
    
    .adn-methode-card {
        padding: 40px 30px;
    }
    
    .adn-methode-number {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .adn-methode-title {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 25px;
    }
    
    .adn-methode-content {
        gap: 18px;
    }
    
    .adn-methode-content p {
        font-size: clamp(15px, 3.8vw, 17px);
    }
    
    /* Contact layout responsive */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-text-column {
        text-align: center;
    }
    
    /* ADN Principles responsive */
    .adn-methode-grid-2col {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
        gap: 50px;
    }
    
    .adn-principles-card {
        padding: 40px 25px; /* Réduction du padding sur mobile */
        border-radius: 16px; /* Réduction du border-radius sur mobile */
    }
    
    .adn-principles {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
        gap: 40px;
    }
    
    .principle {
        gap: 15px;
    }
    
    .principle .number {
        font-size: clamp(36px, 10vw, 48px);
    }
    
    .nav-links {
        position: fixed;
        top: 89px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 89px);
        background: rgba(3, 3, 33, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 30px;
        gap: 30px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(167, 226, 255, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero {
        min-height: auto;
        padding: 180px 0 100px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .service-card {
        padding: 45px 30px;
    }
    
    /* Logo hero encore plus petit sur très petits écrans */
    .hero-logo-main .logo-kromatic-main {
        height: 50px;
        max-width: 90%;
    }
    
    .hero-k-icon {
        width: 12px;
    }
    
    .hero-main-title {
        max-width: 100%;
    }
}
