/* ═══════════════════════════════════════════════════════════════
   CatalysIA — style.css  v3
   B2B Light Theme · Full-page animated canvas · Premium
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg-page:      #F0F4FF;
    --bg-white:     rgba(255,255,255,0.92);
    --bg-alt:       rgba(241,245,255,0.90);
    --bg-break-1:   linear-gradient(135deg, #0f0826 0%, #0d1f3c 100%);
    --bg-break-2:   #07090f;
    --bg-break-3:   linear-gradient(135deg, #0a0620 0%, #091c38 50%, #07192e 100%);

    /* Colors */
    --violet:       #7C3AED;
    --violet-2:     #6D28D9;
    --violet-3:     #8B5CF6;
    --violet-light: #EDE9FE;
    --cyan:         #06B6D4;
    --cyan-light:   #E0F7FA;
    --text:         #0F172A;
    --text-2:       #334155;
    --text-3:       #64748B;
    --border:       #CBD5E1;
    --border-light: #E2E8F0;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    --gradient-text: linear-gradient(90deg, var(--violet), #06B6D4);
    --gradient-text-light: linear-gradient(90deg, #C084FC 0%, #22D3EE 100%);

    /* Shadows */
    --shadow-sm:  0 1px 4px rgba(15,23,42,.07);
    --shadow-md:  0 4px 20px rgba(15,23,42,.1);
    --shadow-lg:  0 12px 40px rgba(15,23,42,.12);
    --shadow-xl:  0 24px 60px rgba(15,23,42,.14);
    --shadow-v:   0 8px 30px rgba(124,58,237,.2);

    /* Fonts */
    --font-display: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Layout */
    --nav-h:  72px;
    --ease:   cubic-bezier(.22,1,.36,1);
    --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background: var(--bg-page);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
strong { font-weight: 600; }
br.br-desktop { display: block; }

/* ── CANVAS FULL-PAGE ────────────────────────────────────────── */
#particlesCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: .95rem; font-weight: 600; }

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

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Z-LAYERS ────────────────────────────────────────────────── */
/* All visible content must sit above the fixed canvas */
.navbar, section, .quote-break, footer { position: relative; z-index: 1; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 2rem;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    border-radius: 50px; border: none; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    box-shadow: 0 4px 20px rgba(124,58,237,.3);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content:''; position:absolute; inset:0;
    background: rgba(255,255,255,.18);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform .4s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.45); }

.btn-secondary {
    display: inline-flex; align-items: center; padding: .85rem 2rem;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-2);
    font-family: var(--font-display); font-weight: 500; font-size: .95rem;
    border-radius: 50px; cursor: pointer;
    transition: border-color .2s, color .2s, transform .25s var(--ease), box-shadow .25s;
}
.btn-secondary:hover {
    border-color: var(--violet);
    color: var(--violet);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; }
.btn-break { margin-top: 2.5rem; font-size: 1.05rem; padding: 1rem 2.5rem; }
.btn-card {
    display: inline-flex; align-items: center; margin-top: 1.5rem;
    padding: .65rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(124,58,237,.4);
    color: var(--violet);
    font-family: var(--font-display); font-weight: 600; font-size: .88rem;
    border-radius: 50px; cursor: pointer;
    transition: all .25s var(--ease);
}
.btn-card:hover {
    background: var(--violet); border-color: var(--violet);
    color: #fff; transform: translateY(-2px);
    box-shadow: var(--shadow-v);
}
.btn-arrow {
    display: inline-block;
    transition: transform .25s var(--ease);
    margin-left: 0.35rem;
}
.btn-primary:hover .btn-arrow,
.btn-card:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-tag {
    display: inline-block; padding: .35rem 1rem;
    background: var(--violet-light);
    border: 1px solid rgba(124,58,237,.2);
    color: var(--violet-2);
    font-family: var(--font-display); font-size: .75rem;
    font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    border-radius: 50px; margin-bottom: 1.25rem;
}
.section-intro {
    color: var(--text-3); font-size: 1.05rem;
    max-width: 680px; margin: 1rem auto 0; line-height: 1.75;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.scroll-reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--d, 0s);
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── REVEAL FROM LEFT ────────────────────────────────────────── */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px) rotate(-2deg);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0) rotate(0); }

/* ── REVEAL FROM RIGHT ───────────────────────────────────────── */
.reveal-right {
    opacity: 0;
    transform: translateX(80px) rotate(2deg);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0) rotate(0); }

/* ── REVEAL ZOOM ─────────────────────────────────────────────── */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.88) translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal-zoom.revealed { opacity: 1; transform: scale(1) translateY(0); }

/* ── CHARACTER REVEAL ────────────────────────────────────────── */
.char-reveal-wrap {
    display: block;
    overflow: visible;
}
.char-reveal-wrap .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px) rotateX(-30deg);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    transition-delay: calc(var(--ci) * 0.025s);
}
.char-reveal-wrap.chars-visible .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ── LOAD ANIMATIONS ─────────────────────────────────────────── */
.animate-load {
    opacity: 0; transform: translateY(28px);
    animation: fadeUp .9s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════════════════════
   NAVBAR — light frosted glass
   ════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; height: var(--nav-h);
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
    background: rgba(240,244,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    height: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform .35s var(--spring), filter .35s var(--ease);
    filter: drop-shadow(0 2px 8px rgba(124,58,237,.15));
}
.nav-logo:hover .logo-img {
    transform: scale(1.08) rotate(6deg);
    filter: drop-shadow(0 4px 12px rgba(124,58,237,.35));
}
.logo-text {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.35rem; color: var(--text);
    letter-spacing: -0.015em;
    display: inline-flex;
    align-items: center;
}
.logo-accent {
    color: var(--cyan);
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet-3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-link {
    padding: .45rem .9rem;
    font-family: var(--font-display); font-weight: 500; font-size: .88rem;
    color: var(--text-3); border-radius: 8px;
    transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--violet); background: var(--violet-light); }
.nav-link.active { color: var(--violet); background: var(--violet-light); }
.nav-cta {
    padding: .5rem 1.25rem;
    background: var(--gradient-main);
    color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .88rem;
    border-radius: 50px; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 2px 12px rgba(124,58,237,.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(124,58,237,.4); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language toggle */
.lang-toggle {
    display: flex; align-items: center; gap: .3rem;
    background: white; border: 1.5px solid var(--border-light);
    border-radius: 50px; padding: .3rem .75rem;
    cursor: pointer; font-family: var(--font-display);
    font-size: .8rem; font-weight: 700; color: var(--text-3);
    transition: border-color .2s, box-shadow .2s;
}
.lang-toggle:hover { border-color: var(--violet); box-shadow: var(--shadow-sm); }
.lang-fr, .lang-en { transition: color .2s; }
.lang-fr.active, .lang-en.active { color: var(--violet); }
.lang-sep { color: var(--border); }

/* Burger */
.nav-burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-burger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ════════════════════════════════════════════════════════════════
   HERO — split 2 columns
   ════════════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    max-height: 980px;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: calc(var(--nav-h) + 1.5rem) clamp(1.25rem,5vw,3rem) 2.5rem;
    background: transparent;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(124, 58, 237, 0.09) 1.5px, transparent 1.5px),
        linear-gradient(to bottom, rgba(240, 244, 255, 0) 70%, var(--bg-page) 100%);
    background-size: 32px 32px, 100% 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); z-index: 0; pointer-events: none; }
.hero-glow.g1 { width: 500px; height: 500px; background: rgba(124,58,237,.1); top: -100px; left: -100px; animation: floatGlow 9s ease-in-out infinite; }
.hero-glow.g2 { width: 350px; height: 350px; background: rgba(6,182,212,.08); bottom: -60px; right: -60px; animation: floatGlow 11s ease-in-out infinite reverse; }
@keyframes floatGlow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }

.hero-layout {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; align-items: center;
    max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-text { display: flex; flex-direction: column; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .5rem 1.25rem;
    background: var(--violet-light); border: 1px solid rgba(124,58,237,.25);
    border-radius: 50px; font-family: var(--font-display);
    font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--violet-2); margin-bottom: 1.25rem; width: fit-content;
}
.badge-dot { width:7px; height:7px; background:#22c55e; border-radius:50%; box-shadow:0 0 8px rgba(34,197,94,.8); animation:pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow:0 0 8px rgba(34,197,94,.7); } 50% { box-shadow:0 0 16px rgba(34,197,94,1); } }
.hero-title { margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero-subtitle { font-size: clamp(.95rem,2vw,1.15rem); color: var(--text-2); line-height: 1.75; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-stats {
    display: flex; align-items: center; gap: 2rem;
    padding: 1.25rem 2rem;
    background: rgba(255,255,255,.85); border: 1px solid var(--border-light);
    border-radius: 16px; backdrop-filter: blur(12px); box-shadow: var(--shadow-md);
    width: fit-content;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.65rem; background: var(--gradient-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-stat-label { font-size: .72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; font-weight: 500; }
.stat-sep { width: 1px; height: 36px; background: var(--border-light); }

/* Hero image */
.hero-visual { position: relative; }
.hero-img-wrap {
    position: relative; border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15,23,42,.18), 0 0 0 1px rgba(124,58,237,.12);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform .6s var(--ease);
}
.hero-img-wrap:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }
.hero-img { width: 100%; height: auto; display: block; }
.hero-img-glow {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating badges on Hero Visual */
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(124, 58, 237, 0.05);
    backdrop-filter: blur(12px);
    z-index: 10;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.hero-floating-badge:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(124, 58, 237, 0.15);
}
.hero-floating-badge .fb-icon {
    font-size: 1.25rem;
    background: var(--violet-light);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-floating-badge .fb-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--violet);
}
.hero-floating-badge div {
    display: flex;
    flex-direction: column;
}
.hero-floating-badge .fb-title {
    font-size: 0.65rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.hero-floating-badge .fb-val {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 700;
    font-family: var(--font-display);
}

/* Positions for badges */
.hero-floating-badge.b1 {
    top: 15%;
    left: -20px;
    animation: floatBadge 6s ease-in-out infinite;
}
.hero-floating-badge.b2 {
    bottom: 20%;
    left: -40px;
    animation: floatBadge 8s ease-in-out infinite 1s;
}
.hero-floating-badge.b3 {
    bottom: 10%;
    right: -20px;
    animation: floatBadge 7s ease-in-out infinite 0.5s;
}

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

.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-3); opacity: .5; animation: fadeIn 2s 2s both;
}
.scroll-line-anim { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--text-3)); order: -1; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform:scaleY(0);transform-origin:top; } 50% { transform:scaleY(1);transform-origin:top; } 51% { transform-origin:bottom; } 100% { transform:scaleY(0);transform-origin:bottom; } }
@keyframes fadeIn { to { opacity:.5; } }

/* ════════════════════════════════════════════════════════════════
   LIGHT SECTIONS — semi-transparent white
   ════════════════════════════════════════════════════════════════ */
.vision-section,
.produit-section,
.techno-section,
.equipe-section,
.contact-section {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: clamp(5rem, 10vw, 9rem) 0;
}

.verticales-section,
.pourquoi-section {
    background: rgba(241,245,255,0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: clamp(5rem, 10vw, 9rem) 0;
}

/* ════════════════════════════════════════════════════════════════
   VISION
   ════════════════════════════════════════════════════════════════ */
.pillars-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.pillar-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.pillar-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background: var(--gradient-main); opacity:0; transition: opacity .3s;
    border-radius: 20px 20px 0 0;
}
.pillar-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,.2); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { opacity:1; }
.pillar-icon { margin-bottom: 1.25rem; display: block; }
.pillar-icon svg {
    width: 2.5rem; height: 2.5rem;
    stroke: var(--violet);
    stroke-width: 1.75;
    vertical-align: middle;
}
.pillar-card h3 { margin-bottom: .75rem; color: var(--text); }
.pillar-card p { color: var(--text-3); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════
   QUOTE BREAKS (dark, dramatic contrast with light sections)
   ════════════════════════════════════════════════════════════════ */
.quote-break {
    position: relative; overflow: hidden;
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 3rem);
    text-align: center;
}
.break-content { position: relative; z-index: 1; }
.break-quote {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 4rem); letter-spacing: -.02em;
    line-height: 1.2; max-width: 900px; margin: 0 auto;
}
/* Word animation */
.break-quote .word, .break-finale-line1 .word, .break-finale-line2 .word {
    display: inline-block; opacity: 0; transform: translateY(18px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.break-quote.words-revealed .word,
.break-finale-line1.words-revealed .word,
.break-finale-line2.words-revealed .word { opacity: 1; transform: translateY(0); }

/* BREAK A — dark purple */
.break-aurora { background: var(--bg-break-1); }
.aurora-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,.2), transparent),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(6,182,212,.1), transparent);
    animation: auroraShift 8s ease-in-out infinite;
}
@keyframes auroraShift { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.break-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.break-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}
.break-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.break-slogan {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: -.02em;
    line-height: 1.15;
    background: var(--gradient-text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.break-sub-slogan {
    color: rgba(248, 250, 252, 0.85);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.6;
    max-width: 600px;
}
.break-visual-col {
    display: flex;
    justify-content: center;
    position: relative;
}
.hologram-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25), inset 0 0 20px rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: hologramFloat 6s ease-in-out infinite;
}
.hologram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05);
}
.hologram-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    mix-blend-mode: color-dodge;
}
.hologram-scanner {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
    animation: hologramScan 4s ease-in-out infinite;
    opacity: 0.8;
}
@keyframes hologramFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes hologramScan {
    0% { top: -2%; }
    50% { top: 102%; }
    100% { top: -2%; }
}
@media (max-width: 991px) {
    .break-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .break-text-col {
        align-items: center;
    }
    .hologram-wrap {
        max-width: 320px;
    }
}

/* BREAK B — dark code */
.break-code { background: var(--bg-break-2); }
.code-rain-bg {
    position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: .8;
}
.break-code .break-quote { color: #F8FAFC; }

/* BREAK C — dark navy */
.break-counter {
    background: var(--bg-break-1);
    border-top: none; border-bottom: none;
}
.break-counter .break-quote { color: #F8FAFC; margin-bottom: 3rem; }
.break-quote-sm { font-size: clamp(1.5rem, 4vw, 3rem); }
.speed-counters { display: flex; gap: 4rem; justify-content: center; flex-wrap: wrap; }
.speed-stat { text-align: center; }
.speed-num, .speed-num-zero {
    display: block; font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1;
    background: var(--gradient-text-light);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.speed-unit {
    font-family: var(--font-display); font-weight: 700; font-size: 2rem;
    color: #8B5CF6; vertical-align: super;
}
.speed-label {
    font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
    color: rgba(248,250,252,.6); margin-top: .5rem; font-weight: 500;
}

/* BREAK D — finale */
.break-finale { background: var(--bg-break-3); padding: clamp(6rem,12vw,11rem) clamp(1.5rem,5vw,3rem); }
.finale-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 70% 70% at 30% 50%, rgba(124,58,237,.25), transparent),
        radial-gradient(ellipse 50% 50% at 70% 50%, rgba(6,182,212,.15), transparent);
}
.break-finale-line1 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5.5rem); letter-spacing: -.03em;
    line-height: 1.1; color: #F8FAFC; display: block;
}
.break-finale-line2 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5.5rem); letter-spacing: -.03em;
    line-height: 1.1; display: block; margin-bottom: .5rem;
    background: var(--gradient-text-light);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ════════════════════════════════════════════════════════════════
   PRODUIT (DocAIx)
   ════════════════════════════════════════════════════════════════ */

/* Big hero image for DocAIx */
.docaix-hero-img-wrap {
    position: relative; border-radius: 24px; overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 40px 100px rgba(15,23,42,.18), 0 0 0 1px rgba(124,58,237,.1);
    aspect-ratio: 21 / 9;
}
@media (max-width: 768px) {
    .docaix-hero-img-wrap {
        aspect-ratio: 16 / 9;
    }
}
.docaix-hero-img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    display: block;
}
.docaix-img-overlay {
    position: absolute; top: 1.5rem; left: 1.5rem;
}
.docaix-badge-live {
    display: inline-block; padding: .35rem .9rem;
    background: #dcfce7; border: 1px solid #86efac;
    color: #166534; font-size: .75rem; font-weight: 700;
    border-radius: 50px; letter-spacing: .05em;
}

/* ── ENGINE GRID ─────────────────────────────────────────────── */
.engine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}
.engine-cap {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.2rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.engine-cap:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--shadow-lg);
}
.engine-cap-icon {
    background: var(--violet-light);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.engine-cap-icon svg {
    width: 2.2rem; height: 2.2rem;
    stroke: var(--violet);
    stroke-width: 1.5;
}
.engine-cap h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.engine-cap p {
    color: var(--text-3);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ── PRODUCTS GRID & CARD ────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    margin-bottom: 4rem;
}
.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--shadow-xl);
}
.product-card-top {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-alt);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-card:hover .product-card-img {
    transform: scale(1.04);
}
.product-card-overlay {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
}
.product-badge-live {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-badge-staging {
    background: #fef9c3;
    border: 1px solid #fde047;
    color: #713f12;
}
.product-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-engine-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: var(--violet-light);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--violet-2);
    width: fit-content;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.engine-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.engine-dot svg {
    width: 0.85rem;
    height: 0.85rem;
    stroke: var(--violet);
}
.product-card-body h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text);
}
.product-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--violet);
    margin-bottom: 1.25rem;
}
.product-desc {
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.25rem;
}
.product-features span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    background: var(--bg-alt);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

/* ── YOUR VERTICAL CTA ───────────────────────────────────────────── */
.your-vertical-cta {
    margin-top: 4rem;
}
.your-vertical-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    background: var(--bg-break-1);
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.your-vertical-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 300px at 80% 50%, rgba(6, 182, 214, 0.15), transparent 80%);
    pointer-events: none;
}
.your-vertical-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}
.your-vertical-icon svg {
    width: 3rem; height: 3rem;
    stroke: var(--cyan);
    stroke-width: 1.5;
}
.your-vertical-inner div {
    flex-grow: 1;
}
.your-vertical-inner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}
.your-vertical-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
}
.your-vertical-inner .btn-primary {
    background: white;
    color: var(--text);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}
.your-vertical-inner .btn-primary:hover {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* ════════════════════════════════════════════════════════════════
   INDUSTRIES (ex-Verticales)
   ════════════════════════════════════════════════════════════════ */

/* Big industries image */
.industries-img-wrap {
    position: relative; border-radius: 24px; overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 40px 100px rgba(15,23,42,.2), 0 0 0 1px rgba(124,58,237,.12);
    aspect-ratio: 21 / 9;
}
@media (max-width: 768px) {
    .industries-img-wrap {
        aspect-ratio: 16 / 9;
    }
}
.industries-img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    display: block;
}
.industries-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.7) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 2.5rem;
}
.industries-overlay-text {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.5rem); color: #fff;
    letter-spacing: -.02em;
}

.vert-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.vert-card {
    display: flex; flex-direction: column; align-items: center; gap: .75rem;
    padding: 2rem 1rem;
    background: white; border: 1px solid var(--border-light); border-radius: 16px;
    text-align: center; cursor: default; font-size: .9rem; font-weight: 500; color: var(--text-2);
    box-shadow: var(--shadow-sm);
    transition: border-color .3s, background .3s, transform .3s var(--ease), box-shadow .3s, color .3s;
}
.vert-card:hover {
    background: var(--violet-light); border-color: rgba(124,58,237,.3);
    color: var(--violet-2); transform: translateY(-4px); box-shadow: var(--shadow-v);
}
.vert-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vert-icon svg {
    width: 2.2rem;
    height: 2.2rem;
    stroke: var(--violet);
    stroke-width: 1.75;
    transition: stroke .3s var(--ease);
}
.vert-card:hover .vert-icon svg {
    stroke: var(--violet-2);
}
.vert-card-cta .vert-icon svg {
    stroke: var(--violet);
}
.vert-card-cta:hover .vert-icon svg {
    stroke: #fff;
}
.vert-card-cta {
    background: var(--violet-light); border-color: rgba(124,58,237,.25); color: var(--violet); font-weight: 700; cursor: pointer;
}
.vert-card-cta:hover { background: var(--gradient-main); border-color: transparent; color: #fff; }

/* ════════════════════════════════════════════════════════════════
   TECHNOLOGIE
   ════════════════════════════════════════════════════════════════ */
.pipeline {
    display: flex; align-items: flex-start; gap: 0;
    margin-bottom: 4rem; overflow-x: auto; padding-bottom: 1rem;
}
.pipe-step {
    flex: 1; min-width: 150px; text-align: center;
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.pipeline.revealed .pipe-step { opacity: 1; transform: translateY(0); }
.pipeline.revealed .pipe-step:nth-child(1) { transition-delay: .1s; }
.pipeline.revealed .pipe-step:nth-child(3) { transition-delay: .3s; }
.pipeline.revealed .pipe-step:nth-child(5) { transition-delay: .5s; }
.pipeline.revealed .pipe-step:nth-child(7) { transition-delay: .7s; }
.pipe-icon-wrap {
    width: 80px; height: 80px; margin: 0 auto 1rem;
    background: var(--violet-light);
    border: 2px solid rgba(124,58,237,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
    box-shadow: var(--shadow-sm);
    transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.pipe-step:hover .pipe-icon-wrap { border-color: var(--violet); box-shadow: var(--shadow-v); transform: scale(1.05); }
.pipe-label { font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: .35rem; color: var(--text); }
.pipe-sub { font-size: .8rem; color: var(--text-3); }
.pipe-arrow { display: flex; align-items: center; padding: 0 .5rem; padding-top: 40px; flex-shrink: 0; position: relative; }
.pipe-arrow::after {
    content: '';
    width: 6px; height: 6px;
    border-top: 2px solid rgba(6,182,212,0.9);
    border-right: 2px solid rgba(6,182,212,0.9);
    transform: rotate(45deg);
    margin-left: -6px;
    flex-shrink: 0;
    box-shadow: 1px -1px 4px rgba(6,182,212,0.3);
}
.pipe-flow-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, rgba(124,58,237,.4), rgba(6,182,212,.8));
    position: relative; overflow: hidden;
    border-radius: 1px;
}
.pipe-flow-line::after {
    content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: flowShimmer 1.8s ease-in-out infinite;
}
@keyframes flowShimmer { to { left: 200%; } }

/* ════════════════════════════════════════════════════════════════
   POURQUOI
   ════════════════════════════════════════════════════════════════ */
.diff-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem;
}
.diff-card {
    padding: 2.5rem 2rem; background: white;
    border: 1px solid var(--border-light); border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.diff-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,.25); box-shadow: var(--shadow-xl); }
.diff-num {
    font-family: var(--font-display); font-weight: 900; font-size: 3.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 1rem; opacity: .25;
    transition: opacity .3s;
}
.diff-card:hover .diff-num { opacity: .6; }
.diff-card h3 { font-size: 1.1rem; margin-bottom: .75rem; color: var(--text); }
.diff-card p { color: var(--text-3); font-size: .88rem; line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════
   ÉQUIPE
   ════════════════════════════════════════════════════════════════ */
.equipe-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem; margin-bottom: 3rem;
}
.equipe-card {
    display: flex; gap: 1.75rem; padding: 2.5rem;
    background: white; border: 1px solid var(--border-light); border-radius: 24px;
    align-items: flex-start; box-shadow: var(--shadow-sm);
    transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.equipe-card:hover { border-color: rgba(124,58,237,.25); transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.avatar {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: #fff;
    flex-shrink: 0; box-shadow: 0 4px 16px rgba(124,58,237,.3);
}
.av-rv { background: linear-gradient(135deg, #7C3AED, #06B6D4); }
.av-cg { background: linear-gradient(135deg, #0891B2, #7C3AED); }
.equipe-body h3 { font-size: 1.25rem; margin-bottom: .3rem; color: var(--text); }
.equipe-role { font-size: .82rem; color: var(--violet); font-weight: 600; margin-bottom: 1rem; }
.equipe-bio { color: var(--text-3); font-size: .88rem; line-height: 1.8; margin-bottom: 1.25rem; }
.linkedin-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem;
    background: #EFF6FF; border: 1px solid #BFDBFE;
    color: #1D4ED8; font-size: .82rem; font-weight: 600;
    border-radius: 8px; font-family: var(--font-display);
    transition: background .2s, transform .2s;
}
.linkedin-btn:hover { background: #DBEAFE; transform: translateY(-2px); }
.conviction-box {
    background: var(--violet-light); border: 1px solid rgba(124,58,237,.15);
    border-radius: 24px; padding: 3rem 3.5rem; text-align: center; position: relative;
}
.conviction-quote {
    position: absolute; top: -.5rem; left: 2rem;
    font-size: 6rem; font-family: var(--font-display); font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; opacity: .2;
}
.conviction-box p {
    font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.8;
    font-style: italic; color: var(--text-2); max-width: 760px; margin: 0 auto;
}
.conviction-sub { color: var(--text-3) !important; font-size: .95rem !important; margin-top: 1.25rem !important; }

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-form {
    display: flex; flex-direction: column; gap: 1.25rem;
    background: white; border: 1px solid var(--border-light);
    border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
    font-size: .78rem; font-weight: 700; color: var(--text-2);
    letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-display);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: #F8FAFF; border: 1.5px solid var(--border-light);
    border-radius: 12px; padding: .85rem 1.1rem;
    color: var(--text); font-family: var(--font-body); font-size: .95rem;
    outline: none; transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}
.form-group select { background-color: #F8FAFF; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
    background: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card {
    background: white; border: 1px solid var(--border-light);
    border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 2rem;
}
.contact-info-card h3 { font-size: 1.25rem; color: var(--text); margin-bottom: -.5rem; }
.contact-email-link {
    display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.05rem;
    font-weight: 700; color: var(--violet); transition: color .2s;
}
.contact-email-link:hover { color: var(--violet-2); }
.contact-mail-svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: var(--violet);
    transition: stroke .2s;
}
.contact-email-link:hover .contact-mail-svg {
    stroke: var(--violet-2);
}
.contact-promises { display: flex; flex-direction: column; gap: .75rem; }
.contact-promises p {
    display: flex; align-items: center; gap: .75rem;
    font-size: .88rem; color: var(--text-2);
}
.promise-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--violet-light);
    flex-shrink: 0;
}
.promise-icon svg {
    width: 0.85rem;
    height: 0.85rem;
    stroke: var(--violet);
    stroke-width: 2.5;
}
.contact-founders { display: flex; flex-direction: column; gap: .75rem; }
.cf-title {
    font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--text-3); font-weight: 700; font-family: var(--font-display);
}
.founder-link {
    display: flex; align-items: center; gap: .9rem;
    padding: .85rem 1.1rem; background: #F8FAFF;
    border: 1px solid var(--border-light); border-radius: 12px;
    font-size: .9rem; font-weight: 500; color: var(--text-2);
    transition: background .2s, border-color .2s, transform .2s;
}
.founder-link:hover { background: var(--violet-light); border-color: rgba(124,58,237,.3); transform: translateX(4px); color: var(--violet); }
.mini-av {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: .7rem;
    color: #fff; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5rem 0 2rem;
}
.footer-top { display: flex; gap: 4rem; align-items: flex-start; margin-bottom: 4rem; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 220px; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; cursor: default; }
.footer-logo:hover .logo-img {
    transform: scale(1.08) rotate(-6deg);
    filter: drop-shadow(0 4px 12px rgba(6,182,212,.35));
}
.footer .logo-text { color: #F8FAFC; }
.footer-brand p { color: rgba(248,250,252,.5); font-size: .9rem; line-height: 1.65; margin-bottom: .75rem; }
.footer-email { color: #8B5CF6; font-family: var(--font-display); font-size: .9rem; font-weight: 600; transition: color .2s; }
.footer-email:hover { color: #06B6D4; }
.footer-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col-title {
    font-family: var(--font-display); font-weight: 700; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .1em; color: #F8FAFC; margin-bottom: .25rem;
}
.footer-col a { font-size: .88rem; color: rgba(248,250,252,.45); transition: color .2s; }
.footer-col a:hover { color: #8B5CF6; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07);
    font-size: .8rem; color: rgba(248,250,252,.3); flex-wrap: wrap; gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(248,250,252,.3); transition: color .2s; }
.footer-legal a:hover { color: rgba(248,250,252,.6); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        height: auto;
        background: #ffffff;
        backdrop-filter: none; -webkit-backdrop-filter: none;
        padding: 2rem 2rem 2.5rem;
        gap: .5rem; align-items: flex-start; z-index: 999;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 8px 32px rgba(15,23,42,.1);
        overflow-y: auto;
        animation: menuSlideDown .3s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes menuSlideDown {
        from { opacity: 0; transform: translateY(-12px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .nav-links.open li {
        opacity: 0;
        animation: menuItemFade .3s cubic-bezier(.22,1,.36,1) both;
    }
    .nav-links.open li:nth-child(1) { animation-delay: .05s; }
    .nav-links.open li:nth-child(2) { animation-delay: .10s; }
    .nav-links.open li:nth-child(3) { animation-delay: .15s; }
    .nav-links.open li:nth-child(4) { animation-delay: .20s; }
    .nav-links.open li:nth-child(5) { animation-delay: .25s; }
    @keyframes menuItemFade {
        from { opacity: 0; transform: translateX(-10px); }
        to   { opacity: 1; transform: translateX(0); }
    }
    .nav-links.open .nav-link { font-size: 1.2rem; padding: .75rem 1rem; width: 100%; color: var(--text); }
    .nav-links.open .nav-cta { font-size: 1.1rem; padding: .75rem 1.5rem; width: 100%; text-align: center; border-radius: 12px; }
    .nav-links.open li:last-child { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); width: 100%; }
    .nav-burger { display: flex; }
    /* Hero */
    .hero-section { max-height: none; overflow: hidden; align-items: flex-start; padding-bottom: 4rem; }
    .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero-badge { margin: 0 auto 1.25rem; }
    .hero-ctas { justify-content: center; }
    .hero-stats { margin: 0 auto; }
    .hero-img-wrap { transform: none; }
    .hero-floating-badge { display: none; }
    /* Engine and Product Grid */
    .engine-grid, .products-grid { grid-template-columns: 1fr; }
    .your-vertical-inner { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2.5rem 2rem; }
    .your-vertical-icon { margin: 0 auto; }
    /* Industries & DocAIx Hero */
    .industries-img-wrap {
        height: clamp(180px, 30vw, 320px);
    }
    .industries-img,
    .docaix-hero-img {
        position: absolute;
        top: -20%;
        left: 0;
        width: 100%;
        height: 140%;
        object-fit: cover;
    }
    .industries-img-overlay {
        padding: clamp(1rem, 4vw, 2.5rem);
    }
    .industries-overlay-text {
        font-size: clamp(1.25rem, 4vw, 2.2rem);
    }
    /* Contact */
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    /* Pipeline */
    .pipeline {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .pipe-arrow {
        flex-direction: column;
        padding: 0.75rem 0;
        padding-top: 0;
        height: auto;
        align-items: center;
        justify-content: center;
    }
    .pipe-flow-line {
        width: 2px;
        height: 36px;
        background: linear-gradient(180deg, rgba(124, 58, 237, 0.4), rgba(6, 182, 214, 0.8));
    }
    .pipe-flow-line::after {
        background: linear-gradient(180deg, transparent, var(--cyan), transparent);
        left: 0;
        top: -100%;
        width: 100%;
        height: 100%;
        animation: flowShimmerVertical 1.8s ease-in-out infinite;
    }
    .pipe-arrow::after {
        transform: rotate(135deg);
        margin-left: 0;
        margin-top: -3px;
    }
    @keyframes flowShimmerVertical {
        to { top: 200%; }
    }
    /* Equipe */
    .equipe-grid { grid-template-columns: 1fr; }
    .conviction-box { padding: 2rem 1.75rem; }
    .hero-stats { flex-direction: column; gap: 1.25rem; }
    .stat-sep { width: 60px; height: 1px; }
}
@media (max-width: 600px) {
    br.br-desktop { display: none; }
    .footer-top { flex-direction: column; gap: 2.5rem; }
    .footer-nav { gap: 2rem; }
    /* Prevent any element from causing horizontal overflow */
    body, .hero-section, section, .quote-break, footer { max-width: 100%; }
    .equipe-card { flex-direction: column; align-items: center; text-align: center; }
    .speed-counters { gap: 2rem; }
    .hero-stats { padding: 1.25rem 1.5rem; }
    .conviction-box { padding: 2rem 1.25rem; }
}
