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

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

: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: 1400px;
    --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;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--night-blue);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

/* =============== 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: 35px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 15px rgba(167, 226, 255, 0.3)) drop-shadow(0 0 15px rgba(255, 112, 174, 0.3));
}

.logo:hover .logo-k-image {
    filter: drop-shadow(0 0 25px rgba(167, 226, 255, 0.5)) drop-shadow(0 0 25px rgba(255, 112, 174, 0.5));
}

.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: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-main .logo-kromatic-main {
    height: 80px;
    width: auto;
    max-width: 100%;
    opacity: 1;
    filter: none;
}

/* H2 - Titre principal sous le logo, centré avec dégradé */
.hero-main-title {
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-main-title p {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 50px);
    font-weight: 900;
    letter-spacing: -0.01em;
    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;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-main-title .title-left {
    text-align: center;
}

.hero-main-title .title-right {
    text-align: center;
}

/* Logo */
.hero-logo {
    margin-bottom: 20px;
    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 - Boutons CTA */
.hero-expertises-white {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-expertises-white p {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.4vw, 17px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: none;
    line-height: 1.8;
    margin-bottom: 0;
    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);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Couleurs individuelles pour chaque expertise - SUPPRIMÉ */
/* Les expertises sont maintenant en blanc transparent avec halo */

/* H4 - Expertises en couleurs - sur une ligne horizontale */
.hero-expertises-white .logo-k-separator {
    height: 12px;
    width: auto;
    opacity: 1;
    margin: 0;
}

/* Suppression des classes de couleur - plus de halos */
.hero-expertises-white .logo-k-separator.k-cyan,
.hero-expertises-white .logo-k-separator.k-green,
.hero-expertises-white .logo-k-separator.k-pink,
.hero-expertises-white .logo-k-separator.k-violet {
    filter: none;
}

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

/* 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.6;
}

/* H4 - Boutons CTA */
.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Hero navigation links - Boutons avec liseré blanc */
.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);
}

/* Couleurs des boutons Hero - Liseré blanc identique */

/* Bouton "L'offre" - Liseré blanc */
.hero-link-pink {
    /* Liseré défini dans .hero-nav-link */
}

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

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

.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" avec halo bleu */
.hero-discover {
    margin-top: 50px;
    text-align: center;
}

.hero-discover-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(14px, 1.5vw, 16px);
    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);
}

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

.hero-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);
}

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

.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.8;
    color: rgba(249, 249, 255, 0.8);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

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

/* =============== 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.8;
    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.6;
    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.8;
    -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.6;
    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(42px, 5.5vw, 68px);
    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-bottom: 80px;
}

/* Sous-titre spécial avec K séparateurs */
.services-subtitle-special {
    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.8;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-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));
}

/* 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: rgba(3, 3, 33, 0.6);
    padding: 60px 45px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.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);
}

.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);
}

.service-name-cyan {
    color: var(--accent-cyan);
}

.service-name-pink {
    color: var(--accent-pink);
}

.service-name-violet {
    color: var(--accent-violet);
}

.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.7;
    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.8;
    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: 60px 0;
    background: var(--night-blue);
    position: relative;
}

/* Pas de halo de fond - supprimé */

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

.respiration-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

/* Flèche sous la phrase */
.respiration-arrow {
    font-size: 24px;
    color: rgba(249, 249, 255, 0.6);
    animation: arrowBounce 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(167, 226, 255, 0.3),
                 0 0 30px rgba(169, 255, 210, 0.2),
                 0 0 40px rgba(255, 112, 174, 0.2);
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Ligne unique avec toute la phrase - taille réduite */
.respiration-single-line {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.8vw, 32px);
    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;
}

/* "Construire" en blanc plein avec halo bleu identique à "Parlons de votre prochain projet" */
.word-full-white {
    color: #F9F9FF;
    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);
}

/* "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 #F9F9FF;
    text-stroke: 1.5px #F9F9FF;
    filter: drop-shadow(0 0 15px rgba(141, 168, 252, 0.5)) 
            drop-shadow(0 0 25px rgba(141, 168, 252, 0.4))
            drop-shadow(0 0 35px rgba(141, 168, 252, 0.3));
    letter-spacing: 0.02em;
}

/* 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) {
    .respiration-line {
        flex-direction: column;
        gap: 10px;
    }
}

.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(16px, 4vw, 28px);
        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));
    }
}

/* =============== 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;
}

.adn-convictions-single-bloc {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}

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

/* Pas de séparateur entre les blocs - ils sont côte à côte */
.adn-section {
    border-right: none;
}

.convictions-section {
    border-left: none;
}

.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);
}

.convictions-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,
.convictions-section:hover {
    border-color: rgba(167, 226, 255, 0.4);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.1);
    transform: translateY(-5px);
}

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

/* Responsive - colonnes empilées sur mobile */
@media (max-width: 968px) {
    .adn-convictions-single-bloc {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 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.8;
    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.7;
    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.8;
}

.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.8;
    color: rgba(249, 249, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* =============== L'ÉQUIPE =============== */
.equipe {
    padding: 60px 0 140px 0;
    background: var(--night-blue);
    position: relative;
    overflow: hidden;
}

.equipe-header-left {
    text-align: center;
    margin-bottom: 30px;
}

/* Surtitre équipe */
.equipe-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.8;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Titre principal équipe */
.equipe-title-main {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FF70AE;
    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);
    line-height: 1.1;
    text-align: left;
    margin-bottom: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ancien titre - à garder pour compatibilité */
.equipe-title-small {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FF85B6;
    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);
    line-height: 1.1;
    text-align: left;
    margin-bottom: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.equipe-carousel-wrapper {
    position: relative;
    max-width: 100%;
}

.equipe-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(3, 3, 33, 0.9);
    border: 2px solid rgba(167, 226, 255, 0.3);
    color: var(--accent-cyan);
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.equipe-nav-btn:hover {
    background: rgba(167, 226, 255, 0.2);
    border-color: rgba(167, 226, 255, 0.6);
    box-shadow: 0 0 20px rgba(167, 226, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

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

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

.equipe-grid {
    display: flex;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

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

.equipe-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    border: 2px solid rgba(167, 226, 255, 0.2);
    transition: var(--transition-smooth);
}

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

/* Halo rose pour Victoria et Anaïs */
.equipe-member[data-halo="pink"]:hover .equipe-photo {
    border-color: rgba(255, 112, 174, 0.6);
    box-shadow: 0 20px 60px rgba(255, 112, 174, 0.5),
                0 0 40px rgba(255, 112, 174, 0.4);
    transform: translateY(-5px);
}

/* Halo vert pour Marc Andréa */
.equipe-member[data-halo="green"]:hover .equipe-photo {
    border-color: rgba(169, 255, 210, 0.6);
    box-shadow: 0 20px 60px rgba(169, 255, 210, 0.5),
                0 0 40px rgba(169, 255, 210, 0.4);
    transform: translateY(-5px);
}

/* Halo cyan pour Fabien */
.equipe-member[data-halo="cyan"]:hover .equipe-photo {
    border-color: rgba(167, 226, 255, 0.6);
    box-shadow: 0 20px 60px rgba(167, 226, 255, 0.5),
                0 0 40px rgba(167, 226, 255, 0.4);
    transform: translateY(-5px);
}

/* Halo violet pour Tanya */
.equipe-member[data-halo="violet"]:hover .equipe-photo {
    border-color: rgba(141, 168, 252, 0.6);
    box-shadow: 0 20px 60px rgba(141, 168, 252, 0.5),
                0 0 40px rgba(141, 168, 252, 0.4);
    transform: translateY(-5px);
}

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

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

.equipe-logo-k-separator {
    height: 12px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 112, 174, 0.5))
            drop-shadow(0 0 18px rgba(167, 226, 255, 0.5))
            drop-shadow(0 0 15px rgba(169, 255, 210, 0.4))
            drop-shadow(0 0 20px rgba(141, 168, 252, 0.4));
    margin: 0;
    opacity: 0.4;
    flex-shrink: 0;
}

.equipe-prenom {
    font-weight: 700;
    color: var(--white);
}

.equipe-fonction {
    font-weight: 700;
    color: var(--white);
}

.equipe-role {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(249, 249, 255, 0.7);
    letter-spacing: 0.05em;
}

@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.8;
    -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;
}

/* 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.6;
}

/* 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.8;
    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.8;
    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.6;
}

/* 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.6;
}

.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.6;
}

/* 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 40px;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .about-visual {
        height: 450px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
    
    /* Hero logo responsive */
    .hero-logo-image {
        max-width: 90%;
    }
    
    /* Contact layout responsive */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-text-column {
        text-align: center;
    }
    
    .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;
    }
}
