/* =========================
   ENVIRENO — STYLES
   ========================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* === VARIABLES === */
:root {
    /* Couleurs principales */
    --green: #00C853;
    --green-light: #2ECC71;
    --green-dark: #009639;
    --green-bg: #E8F8EF;

    --navy: #0F1B2D;
    --navy-light: #1A2942;
    --navy-deep: #08111F;

    --orange: #F39C12;
    --orange-light: #FFB84D;

    --blue: #3498DB;
    --blue-light: #5DADE2;

    /* Neutres */
    --ink: #0F1B2D;
    --ink-soft: #2D3A52;
    --ink-muted: #6B7A95;
    --ink-light: #9CA8BC;

    --bg: #FFFFFF;
    --bg-alt: #F7FAFC;
    --bg-soft: #EEF3F8;
    --line: #E4EAF1;

    /* Effets */
    --shadow-sm: 0 1px 2px rgba(15,27,45,0.05), 0 1px 3px rgba(15,27,45,0.06);
    --shadow-md: 0 4px 12px rgba(15,27,45,0.06), 0 2px 6px rgba(15,27,45,0.04);
    --shadow-lg: 0 12px 32px rgba(15,27,45,0.08), 0 4px 16px rgba(15,27,45,0.06);
    --shadow-xl: 0 24px 64px rgba(15,27,45,0.12), 0 8px 24px rgba(15,27,45,0.08);
    --shadow-green: 0 12px 32px rgba(0,200,83,0.25);

    /* Transitions */
    --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container: 1280px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Type scale */
    --fs-hero: clamp(2.25rem, 5vw + 1rem, 4.75rem);
    --fs-h2: clamp(1.875rem, 3vw + 0.75rem, 3.25rem);
    --fs-h3: clamp(1.25rem, 1vw + 1rem, 1.625rem);
    --fs-lead: clamp(1.0625rem, 0.5vw + 1rem, 1.25rem);
}

/* === LAYOUT === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: clamp(4rem, 8vw, 7rem) 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }

.section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--green-bg); color: var(--green-dark);
    border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.section-tag.light { background: rgba(255,255,255,0.12); color: white; backdrop-filter: blur(8px); }

.section-title { font-size: var(--fs-h2); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.025em; }
.section-lead { font-size: var(--fs-lead); color: var(--ink-muted); max-width: 720px; line-height: 1.6; }
.text-muted { color: var(--ink-muted); font-weight: 600; }
.text-gradient {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, var(--blue) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-block;
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.01em;
    border-radius: 999px; border: 1.5px solid transparent;
    transition: all var(--t-base);
    white-space: nowrap; cursor: pointer; position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.25), transparent 50%);
    opacity: 0; transition: opacity var(--t-base);
}
.btn:hover::before { opacity: 1; }
.btn i { transition: transform var(--t-base); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,200,83,0.35); }

.btn-ghost {
    background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }

.btn-glass {
    background: rgba(255,255,255,0.1); color: white;
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }

.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
.btn-md { padding: 0.85rem 1.5rem; font-size: 0.9375rem; }
.btn-lg { padding: 1.05rem 1.875rem; font-size: 1rem; }
.btn-block { width: 100%; }

.text-gradient-light {
    background: linear-gradient(135deg, #B8FFD0 0%, #FFFFFF 50%, #A8E6FF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-block;
}

/* === HEADER === */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0.15rem 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--t-base);
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); padding: 0.12rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo { display: inline-flex; align-items: center; color: var(--ink); flex-shrink: 0; }
.logo-svg { width: 140px; height: auto; }
.logo-img {
    width: auto; display: block; max-width: 100%;
    transition: height var(--t-base), filter var(--t-base), max-width var(--t-base);
}
/* Header : sans les deux traits orange/bleu en bas — rognage seul ici (footer inchangé) */
.header .logo {
    max-width: 200px;
    flex-shrink: 0;
}
.header .logo-img {
    height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: top center;
    clip-path: inset(0 0 18% 0);
}
/* Sur fond sombre (hero non scrollé) → logo en clair */
.header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
/* Au scroll (fond clair) → logo en couleurs originales */
.header.scrolled .logo { max-width: 176px; }
.header.scrolled .logo-img {
    height: 52px;
    filter: none;
}
/* Footer (fond sombre) — logo complet, agrandi uniquement */
.footer .logo-img {
    height: 172px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
/* Pages éligibilité & contact (header toujours clair) */
.header-light .logo {
    max-width: 176px;
}
.elig-main .logo-img,
.header-light .logo-img {
    height: 52px !important;
    filter: none !important;
}
/* Barre navigation plus basse */
.header { padding-top: 0.15rem; padding-bottom: 0.15rem; }
.header.scrolled { padding-top: 0.12rem; padding-bottom: 0.12rem; }
.header-actions .btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
}
@media (max-width: 768px) {
    .header .logo {
        max-width: 168px;
    }
    .header .logo-img {
        height: 58px;
    }
    .header.scrolled .logo {
        max-width: 148px;
    }
    .header.scrolled .logo-img {
        height: 46px;
    }
    .header-light .logo {
        max-width: 156px;
    }
    .elig-main .logo-img,
    .header-light .logo-img {
        height: 46px !important;
    }
    .footer .logo-img {
        height: 120px;
    }
}

.nav { flex: 1; }
.nav-list { display: flex; gap: 2rem; justify-content: center; }
.nav-link {
    font-size: 0.9375rem; font-weight: 500; color: var(--ink-soft);
    transition: color var(--t-fast); position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--green); transition: width var(--t-base);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.875rem; }
.phone-link {
    width: 40px; height: 40px; border-radius: 50%; background: var(--green-bg); color: var(--green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--t-base);
}
.phone-link:hover { background: var(--green); color: white; transform: rotate(-12deg); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t-base); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: min(85%, 360px); height: 100vh;
    background: white; z-index: 99; padding: 6rem 1.5rem 2rem;
    transition: right var(--t-slow); box-shadow: -16px 0 64px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; gap: 2rem;
}
.mobile-menu.open { right: 0; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav a {
    display: block; padding: 0.875rem 0; font-size: 1.125rem; font-weight: 600;
    border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--green); }

/* === HERO CENTERED (COMPACT) === */
.hero {
    position: relative; min-height: 92vh; padding: 7rem 0 2.5rem;
    overflow: hidden; display: flex; flex-direction: column;
    color: white;
}
.hero-mini-badges {
    display: flex; gap: 0.75rem 1.5rem; flex-wrap: wrap;
    justify-content: center; margin-top: 0.5rem;
    font-size: 0.875rem; color: rgba(255,255,255,0.85);
}
.hero-mini-badges span {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
    font-weight: 500;
}
.hero-mini-badges i { color: var(--green-light); font-size: 0.8125rem; }
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(120px);
    pointer-events: none; z-index: 1;
}
.glow-1 { top: 10%; right: 10%; width: 480px; height: 480px; background: rgba(0,200,83,0.25); animation: glowMove 18s ease-in-out infinite; }
.glow-2 { bottom: 10%; left: 5%; width: 420px; height: 420px; background: rgba(52,152,219,0.22); animation: glowMove 22s ease-in-out infinite reverse; }
@keyframes glowMove {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(40px, -40px); }
}

.hero-content-centered {
    max-width: 980px; margin: 0 auto; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}

.hero-pill {
    display: inline-flex; align-items: center; gap: 0.625rem;
    padding: 0.55rem 1.125rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
    font-size: 0.875rem; font-weight: 600; color: white;
    margin-bottom: 1.75rem;
}
.hero-pill i { color: var(--green-light); font-size: 0.9375rem; }

.hero-title-xl {
    font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
    font-weight: 900; line-height: 1.02;
    letter-spacing: -0.04em; margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
/* Référence hero : cyan → vert lime horizontal */
.hero-word-gradient {
    background: linear-gradient(90deg, #43E8FF 0%, #2EE879 52%, #9EF03A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 20px rgba(46, 232, 121, 0.35));
}

.hero-subtitle-centered {
    font-size: clamp(1rem, 0.55vw + 0.95rem, 1.1875rem);
    color: rgba(255,255,255,0.88);
    max-width: 720px; margin: 0 auto 2.25rem; line-height: 1.6;
}
.hero-subtitle-centered strong { color: white; font-weight: 700; }

.hero-ctas-centered {
    display: flex; flex-wrap: wrap; gap: 0.875rem;
    justify-content: center; margin-bottom: 3rem;
}

/* Stats cards horizontales (3 pills) */
.hero-stats-cards {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem; width: 100%; max-width: 880px; margin: 0 auto;
}
.hero-stat-pill {
    padding: 1.5rem 1.25rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    transition: all var(--t-base);
    position: relative; overflow: hidden;
}
.hero-stat-pill::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.hero-stat-pill:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(46,204,113,0.4);
}
.hero-stat-pill.featured {
    background: linear-gradient(135deg, rgba(0,200,83,0.18) 0%, rgba(52,152,219,0.15) 100%);
    border-color: rgba(46,204,113,0.4);
    box-shadow: 0 16px 40px rgba(0,200,83,0.15);
}
.pill-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 800;
    color: white; line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 0.375rem;
}
.pill-value span {
    font-size: 0.7em; opacity: 0.85; color: var(--green-light);
}
.hero-stat-pill.featured .pill-value span { color: white; }
.pill-label {
    font-size: 0.8125rem; color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.hero-scroll {
    position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; color: rgba(255,255,255,0.6);
    letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite; z-index: 3;
    cursor: pointer; transition: color var(--t-fast);
}
.hero-scroll:hover { color: white; }
.scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* === HERO CAROUSEL === */
.hero-carousel { overflow: hidden; }
.carousel-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide.active { opacity: 1; }
.carousel-slide.active img { animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.18); }
}
.carousel-dots {
    position: absolute; bottom: 1.75rem; left: 50%;
    transform: translateX(-50%); z-index: 4;
    display: flex; gap: 0.5rem; padding: 0.5rem 0.875rem;
    background: rgba(0,0,0,0.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
}
.carousel-dot {
    width: 28px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: all var(--t-base);
}
.carousel-dot.active { background: var(--green-light); width: 40px; }
.carousel-dot:hover { background: rgba(255,255,255,0.7); }

/* === ENGAGEMENT SECTION === */
.engagement {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    position: relative;
}
.engagement-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
    align-items: center;
}
.engagement-content .section-title { margin-bottom: 1.25rem; }
.engagement-ctas {
    display: flex; flex-wrap: wrap; gap: 0.875rem; margin-top: 2rem;
}

.engagement-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative; overflow: hidden;
}
.engagement-stats::before {
    content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,200,83,0.08), transparent 70%);
    border-radius: 50%; transform: translate(40%, -40%);
}
.eng-stat {
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--t-base);
}
.eng-stat:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 12px 32px rgba(0,200,83,0.12);
}
.eng-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 800;
    color: var(--ink); line-height: 1; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--ink) 0%, var(--green-dark) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-flex; align-items: baseline; justify-content: center;
}
.eng-stat-value .stat-suffix, .eng-stat-value .counter-prefix { color: var(--green); -webkit-text-fill-color: var(--green); }
.eng-stat-label { font-size: 0.875rem; color: var(--ink-muted); font-weight: 600; }

/* === SOLUTIONS TABLE === */
.solutions-table-wrap {
    margin: 0 auto 4rem; max-width: 1100px;
    background: white; border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.table-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white; flex-wrap: wrap; gap: 0.5rem;
}
.table-header h3 {
    font-size: 1.0625rem; color: white; margin: 0;
    display: inline-flex; align-items: center; gap: 0.625rem;
}
.table-header h3 i { color: var(--green-light); }
.table-meta {
    font-size: 0.8125rem; color: rgba(255,255,255,0.7); font-weight: 500;
}

.solutions-table-scroll { overflow-x: auto; }
.solutions-table {
    width: 100%; border-collapse: collapse; min-width: 720px;
}
.solutions-table th {
    padding: 1rem 1.25rem; text-align: left;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--ink-muted);
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
}
.solutions-table td {
    padding: 1.125rem 1.25rem; vertical-align: middle;
    font-size: 0.9375rem; color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}
.solutions-table tr:last-child td { border-bottom: none; }
.solutions-table tr { transition: background var(--t-fast); }
.solutions-table tbody tr:hover { background: var(--bg-alt); }
.solutions-table td strong { color: var(--ink); font-weight: 700; }

.row-featured {
    background: linear-gradient(90deg, rgba(0,200,83,0.04), rgba(52,152,219,0.04));
}
.row-featured td:first-child { border-left: 3px solid var(--green); }

.cell-price {
    display: inline-block; padding: 0.25rem 0.625rem;
    background: var(--green-bg); color: var(--green-dark);
    border-radius: 6px; font-weight: 700; font-size: 0.875rem;
}
.cell-tag {
    display: inline-block; padding: 0.25rem 0.625rem;
    background: var(--bg-alt); color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    margin-right: 0.25rem;
}
.cell-tag.green { background: var(--green-bg); color: var(--green-dark); border-color: transparent; }
.cell-badge {
    display: inline-block; padding: 0.15rem 0.5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; border-radius: 4px;
    font-size: 0.6875rem; font-weight: 700; margin-left: 0.375rem;
    vertical-align: middle;
}
.table-note {
    padding: 1rem 1.75rem; background: var(--bg-alt);
    font-size: 0.8125rem; color: var(--ink-muted); font-style: italic;
    border-top: 1px solid var(--line);
}

/* === BENTO GRID === */
.bento-title {
    text-align: center; font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
    margin-bottom: 2rem; color: var(--ink);
}
.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px; gap: 1.25rem;
}
.bento-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--t-base), box-shadow var(--t-base);
    cursor: pointer; grid-column: span 1; grid-row: span 1;
}
.bento-card.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-card.bento-feature { grid-column: span 2; grid-row: span 1; }
.bento-card.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.bento-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.bento-card:hover img { transform: scale(1.08); }
.bento-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,27,45,0.1) 0%, rgba(15,27,45,0.85) 70%, rgba(15,27,45,0.95) 100%);
    transition: background var(--t-base);
}
.bento-card:hover .bento-overlay {
    background: linear-gradient(180deg, rgba(15,27,45,0.2) 0%, rgba(15,27,45,0.85) 50%, rgba(15,27,45,0.98) 100%);
}
.bento-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem; color: white;
    z-index: 2; display: flex; flex-direction: column; gap: 0.5rem;
}
.bento-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
}
.bento-tag {
    display: inline-block; align-self: flex-start;
    padding: 0.25rem 0.625rem;
    background: rgba(0,200,83,0.2); color: var(--green-light);
    border: 1px solid rgba(46,204,113,0.4);
    border-radius: 4px; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.bento-content h4 {
    font-size: clamp(1.125rem, 1vw + 0.75rem, 1.5rem);
    font-weight: 800; line-height: 1.2; color: white; margin: 0.25rem 0;
}
.bento-card.bento-large h4 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2.25rem); }
.bento-content p {
    font-size: 0.875rem; color: rgba(255,255,255,0.8);
    line-height: 1.5; margin: 0;
}
.bento-stats {
    display: flex; gap: 1.25rem; margin: 0.5rem 0;
}
.bento-stats > div {
    display: flex; flex-direction: column;
}
.bento-stats strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem; color: var(--green-light); font-weight: 800;
}
.bento-stats span { font-size: 0.7rem; color: rgba(255,255,255,0.65); }
.bento-aids {
    display: flex; gap: 0.375rem; flex-wrap: wrap; margin-top: 0.25rem;
}
.bento-aids span {
    padding: 0.2rem 0.5rem;
    background: rgba(255,255,255,0.12);
    border-radius: 4px; font-size: 0.6875rem; font-weight: 600;
    color: white;
}
.bento-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 0.5rem; font-size: 0.875rem; font-weight: 700;
    color: var(--green-light); transition: gap var(--t-fast);
    align-self: flex-start;
}
.bento-link:hover { gap: 0.625rem; }
.bento-tag-corner {
    position: absolute; top: 1rem; right: 1rem; z-index: 3;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; border-radius: 6px;
    font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(0,200,83,0.4);
}

/* === TRUST BANNER (CTA) === */
.cta-trust-banner {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 0.5rem;
}
.trust-banner-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.875rem 1.125rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: all var(--t-base);
}
.trust-banner-item:hover {
    background: rgba(255,255,255,0.1); border-color: var(--green-light);
}
.trust-banner-item i {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(46,204,113,0.18); color: var(--green-light);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem; flex-shrink: 0;
}
.trust-banner-item div { display: flex; flex-direction: column; }
.trust-banner-item strong { color: white; font-size: 0.9375rem; font-weight: 700; }
.trust-banner-item span { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }

/* === FOOTER GHOST BTN === */
.btn-ghost-light {
    background: transparent; color: white;
    border-color: rgba(255,255,255,0.2);
    margin-top: 0.625rem;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
.footer-cta { display: flex; flex-direction: column; gap: 0; }

/* === SOLUTIONS — STYLE SHOWCASE ÉDITORIAL === */
.sol-showcase {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem; margin-bottom: 4rem;
}

.sol-show {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.sol-show:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-light);
}

/* IMAGE — pleine largeur en haut, ratio 16:10, sans split ni badge -% */
.sol-show-image {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
    background: var(--bg-soft);
}
.sol-show-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
    filter: saturate(1.05);
}
.sol-show:hover .sol-show-image img { transform: scale(1.06); }

/* Numéro géant en outline blanc semi-transparent */
.sol-show-num {
    position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem); font-weight: 800;
    line-height: 0.85; letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.7);
    text-stroke: 2px rgba(255,255,255,0.7);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Cadre intérieur subtil */
.sol-show-frame {
    position: absolute; inset: 12px; z-index: 1;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px; pointer-events: none;
}

/* Stamp Premium pour Solution 3 */
.sol-show-stamp {
    position: absolute; top: 1.25rem; left: 1.25rem; z-index: 3;
    padding: 0.4rem 0.875rem;
    background: white; color: var(--ink);
    border-radius: 6px;
    font-size: 0.6875rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sol-show.featured .sol-show-stamp {
    background: linear-gradient(135deg, var(--ink) 0%, var(--navy-light) 100%);
    color: white;
}
.sol-show.featured { border: 1px solid rgba(0,200,83,0.3); }
.sol-show.featured::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0,200,83,0.06) 0%, transparent 50%);
    z-index: 1;
}

/* TEXT BLOCK */
.sol-show-text {
    padding: 2rem 1.875rem 2.25rem;
    display: flex; flex-direction: column; gap: 0.875rem;
    flex: 1;
}

.sol-show-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--ink-muted); letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sol-show-eyebrow i {
    color: var(--green); font-size: 0.875rem;
}

.sol-show-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 1.5vw + 0.875rem, 1.875rem);
    font-weight: 700; line-height: 1.15;
    letter-spacing: -0.025em; color: var(--ink);
    margin: 0;
}

.sol-show-lead {
    font-size: 1.0625rem;
    color: var(--ink-soft);
    line-height: 1.5; margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--green);
}
.sol-show-lead em {
    font-style: normal; font-weight: 700; color: var(--green-dark);
}

.sol-show-text > p:not(.sol-show-lead) {
    font-size: 0.9375rem; color: var(--ink-muted);
    line-height: 1.65; margin: 0;
}
.sol-show-text > p strong { color: var(--ink); font-weight: 700; }

/* FACTS - 3 colonnes minimalistes */
.sol-show-facts {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin: 0.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}
.sol-fact {
    display: flex; flex-direction: column; gap: 0.2rem;
    padding: 0 0.5rem;
    border-right: 1px solid var(--line);
}
.sol-fact:last-child { border-right: none; }
.sol-fact-key {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem; font-weight: 800;
    color: var(--ink); letter-spacing: -0.02em;
    line-height: 1.1;
}
.sol-show.featured .sol-fact-key,
.sol-show:hover .sol-fact-key { color: var(--green-dark); }
.sol-fact-val {
    font-size: 0.6875rem; color: var(--ink-muted);
    text-transform: uppercase; letter-spacing: 0.04em;
    font-weight: 600; line-height: 1.3;
}

/* CTA fiches solutions : bouton vert plein, tout le texte en blanc */
.sol-show-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding: 0.7rem 1.35rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, #1fa855 0%, #0f8a42 52%, #0c6e36 100%);
    color: #fff;
    transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
    box-shadow: 0 4px 16px rgba(15, 138, 66, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.sol-show-link::after { display: none; }
.sol-show-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(15, 138, 66, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.06);
}
.sol-show-link .sol-cta-strong {
    color: inherit;
}
.sol-show-link .sol-cta-rest {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}
.sol-show-link:hover .sol-cta-rest { color: #fff; }
.sol-show-link .arrow {
    display: inline-block;
    font-family: monospace;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    transition: transform var(--t-base);
}
.sol-show-link:hover .arrow { transform: translateX(6px); }
.sol-show.featured .sol-show-link {
    border-color: rgba(255, 255, 255, 0.28);
}
.sol-show-link-body {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .sol-showcase { grid-template-columns: 1fr; }
}

/* === SOLUTIONS DÉTAILLÉES (anciens styles, désactivés) === */
.sol-detail-OLD-DISABLED { display: none; }
/* Anciens styles conservés pour ne rien casser */
.solutions-detail {
    display: flex; flex-direction: column;
    gap: clamp(4rem, 8vw, 7rem);
    margin-bottom: 5rem;
}
.sol-detail {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}
.sol-detail.reverse .sol-content { order: 2; }
.sol-detail.reverse .sol-media { order: 1; }

.sol-content { padding: 0; }

.sol-num-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    background: var(--green-bg); color: var(--green-dark);
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.sol-num-pill i { font-size: 0.75rem; }
.sol-num-pill.featured-pill {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; box-shadow: 0 6px 16px rgba(0,200,83,0.3);
}

.sol-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.025em; margin-bottom: 1.25rem;
}
.sol-title-green { color: var(--green-dark); }
.sol-title-orange {
    background: linear-gradient(135deg, #F39C12 0%, #FFB84D 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.sol-text {
    color: var(--ink-soft); font-size: 1rem;
    line-height: 1.65; margin-bottom: 0.875rem;
}
.sol-text strong { color: var(--ink); font-weight: 700; }

.sol-pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin: 1.5rem 0;
}
.sol-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: white; border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft);
    transition: all var(--t-fast);
}
.sol-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--green-light);
}

.sol-btn { margin-top: 0.75rem; }

/* IMAGE SPLIT DIAGONALE */
.sol-media {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--t-slow);
}
.sol-detail:hover .sol-media { transform: translateY(-6px); }

.sol-img-split {
    position: relative; width: 100%; height: 100%;
}
.sol-img-split .img-left,
.sol-img-split .img-right {
    position: absolute; top: 0; width: 56%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.sol-img-split .img-left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.sol-img-split .img-right {
    right: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.sol-detail:hover .sol-img-split .img-left,
.sol-detail:hover .sol-img-split .img-right { transform: scale(1.06); }

/* Ligne de séparation diagonale */
.sol-img-split::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    left: 50%; width: 3px;
    background: linear-gradient(180deg, transparent, white 30%, white 70%, transparent);
    transform: translateX(-50%) skewX(-12deg);
    z-index: 2; box-shadow: 0 0 16px rgba(255,255,255,0.6);
}

/* Badge stat en bas à droite */
.sol-badge {
    position: absolute; bottom: 1.5rem; right: 1.5rem; z-index: 3;
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(15,27,45,0.85);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,184,77,0.4);
    border-radius: 14px;
    color: white; line-height: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.sol-badge strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, #FFB84D 0%, #F39C12 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 0.25rem;
}
.sol-badge span {
    font-size: 0.7rem; color: rgba(255,255,255,0.85);
    text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 700;
}

/* Featured solution (Rénovation globale) */
.sol-detail.featured .sol-media::before {
    content: ''; position: absolute; inset: -6px;
    background: linear-gradient(135deg, var(--green) 0%, var(--orange) 50%, var(--blue) 100%);
    border-radius: calc(var(--radius-xl) + 4px); z-index: -1;
    filter: blur(16px); opacity: 0.5;
}

/* === RESPONSIVE — Engagement & Bento === */
@media (max-width: 1024px) {
    .engagement-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .bento-card.bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-card.bento-feature, .bento-card.bento-wide { grid-column: span 2; }

    .sol-detail, .sol-detail.reverse {
        grid-template-columns: 1fr; gap: 2rem;
    }
    .sol-detail.reverse .sol-content { order: 2; }
    .sol-detail.reverse .sol-media { order: 1; }
}
@media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .bento-card, .bento-card.bento-large, .bento-card.bento-feature, .bento-card.bento-wide {
        grid-column: span 1; grid-row: span 1;
    }
    .engagement-stats { grid-template-columns: 1fr; padding: 1.5rem; }
    .table-header { flex-direction: column; align-items: flex-start; }
}

.hero-bg-image {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transform: scale(1.05); animation: heroZoom 25s ease-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(8,17,31,0.92) 0%, rgba(15,27,45,0.78) 50%, rgba(15,27,45,0.55) 100%),
        radial-gradient(circle at 80% 20%, rgba(0,200,83,0.18) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(52,152,219,0.15) 0%, transparent 45%);
}
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
    position: relative; z-index: 2; flex: 1;
    display: flex; align-items: center; padding: 2rem 1.5rem;
}
.hero-content { max-width: 880px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
    font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.95);
    margin-bottom: 1.75rem;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green-light);
    box-shadow: 0 0 0 0 rgba(46,204,113,0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
    70% { box-shadow: 0 0 0 14px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
    font-weight: 900; line-height: 1.04;
    letter-spacing: -0.035em; margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: clamp(1.0625rem, 0.6vw + 1rem, 1.3125rem);
    color: rgba(255,255,255,0.85);
    max-width: 640px; margin-bottom: 2rem; line-height: 1.55;
}
.hero-subtitle strong { color: white; font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 2rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.trust-item {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 500;
}
.trust-item i { color: var(--green-light); font-size: 1rem; }

/* Hero stats bar (en bas du hero) */
.hero-stats-bar {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}
.hero-stats-grid {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.hero-stat-item {
    display: flex; align-items: center; gap: 0.875rem;
    flex: 1; min-width: 200px;
}
.hero-stat-feature {
    flex: 1.5;
}
.hero-stat-feature .hero-stat-number {
    font-size: clamp(2.25rem, 3.5vw, 3.5rem) !important;
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 70%, #fff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(46,204,113,0.15); color: var(--green-light);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.hero-stat-feature .hero-stat-icon {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; box-shadow: 0 8px 20px rgba(0,200,83,0.3);
}
.hero-stat-text { display: flex; flex-direction: column; min-width: 0; }
.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 2.2vw, 2.25rem); font-weight: 800;
    line-height: 1; color: white; letter-spacing: -0.02em;
    display: inline-flex; align-items: baseline;
}
.num-prefix, .num-suffix { font-size: 0.75em; opacity: 0.85; }
.num-prefix { margin-right: 2px; }
.hero-stat-label {
    font-size: 0.8125rem; color: rgba(255,255,255,0.7);
    margin-top: 4px; font-weight: 500;
}
.hero-stat-label strong { color: white; font-weight: 700; }
.hero-stat-divider {
    width: 1px; height: 48px; background: rgba(255,255,255,0.12);
}

.hero-scroll {
    position: absolute; bottom: 7rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; color: rgba(255,255,255,0.6);
    letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite; z-index: 2;
}
.scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Header invert sur hero */
.header { background: rgba(15,27,45,0.4); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-bottom-color: rgba(255,255,255,0.06); }
.header .logo { color: white; }
.header .logo-svg text { fill: white !important; }
.header .nav-link { color: rgba(255,255,255,0.85); }
.header .nav-link:hover { color: white; }
.header .nav-link::after { background: var(--green-light); }
.header .phone-link { background: rgba(255,255,255,0.1); color: white; }
.header .phone-link:hover { background: var(--green); color: white; }
.header .menu-toggle span { background: white; }
.header.scrolled {
    background: rgba(255,255,255,0.92);
    border-bottom-color: var(--line);
}
.header.scrolled .logo { color: var(--ink); }
.header.scrolled .logo-svg text { fill: var(--ink) !important; }
.header.scrolled .nav-link { color: var(--ink-soft); }
.header.scrolled .nav-link:hover { color: var(--ink); }
.header.scrolled .nav-link::after { background: var(--green); }
.header.scrolled .phone-link { background: var(--green-bg); color: var(--green-dark); }
.header.scrolled .phone-link:hover { background: var(--green); color: white; }
.header.scrolled .menu-toggle span { background: var(--ink); }

/* === BADGES BAR === */
.badges-bar {
    padding: 2rem 0; background: var(--navy);
    overflow: hidden;
}
.badges-track {
    display: flex; align-items: center; gap: 3rem;
    flex-wrap: wrap; justify-content: center;
}
.badge-item {
    display: inline-flex; align-items: center; gap: 0.625rem;
    color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500;
    transition: color var(--t-base);
}
.badge-item i { color: var(--green-light); font-size: 1.125rem; }
.badge-item:hover { color: white; }

/* === STATS === */
.stats-section { background: var(--bg-alt); }
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.stat-block {
    padding: 2.5rem 1.75rem; background: white;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    text-align: center; transition: all var(--t-base);
    position: relative; overflow: hidden;
}
.stat-block::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow);
}
.stat-block:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.stat-block:hover::before { transform: scaleX(1); }

.stat-block-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--green-bg); color: var(--green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.375rem; margin-bottom: 1.25rem;
}
.stat-block-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800;
    color: var(--ink); line-height: 1; margin-bottom: 0.5rem;
    display: flex; align-items: baseline; justify-content: center;
    background: linear-gradient(135deg, var(--ink) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-suffix, .counter-prefix { color: var(--green); -webkit-text-fill-color: var(--green); }
.stat-block-label { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.stat-block-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.5; }

/* === PROBLEM/SOLUTION === */
.ps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.ps-card {
    padding: 2rem; background: white;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    transition: all var(--t-base);
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ps-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.375rem; margin-bottom: 1.25rem;
    box-shadow: var(--shadow-green);
}
.ps-card h3 { font-size: var(--fs-h3); margin-bottom: 0.75rem; }
.ps-card p { color: var(--ink-muted); }

/* === SOLUTIONS — STORYTELLING ROWS === */
.solutions { background: var(--bg); position: relative; }
.solutions::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.solutions-list {
    display: flex; flex-direction: column;
    gap: clamp(3.5rem, 6vw, 6rem);
    margin-bottom: 4rem;
}

.solution-row {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}
.solution-row.reverse { grid-template-columns: 1fr 1.15fr; }
.solution-row.reverse .solution-media { order: 2; }
.solution-row.reverse .solution-content { order: 1; }

/* Featured row (Rénovation globale) */
.solution-row.featured .solution-media::after {
    content: ''; position: absolute; inset: -8px;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    border-radius: calc(var(--radius-xl) + 4px); z-index: -1; opacity: 0.5;
    filter: blur(20px);
}

/* Solution media (image grande) */
.solution-media {
    position: relative; aspect-ratio: 4/3;
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--t-slow);
}
.solution-row:hover .solution-media { transform: translateY(-6px); }
.solution-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.solution-row:hover .solution-media img { transform: scale(1.06); }
.solution-media::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(15,27,45,0.55) 100%);
    pointer-events: none;
}

.media-badge {
    position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 2;
    display: inline-flex; align-items: center; gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    font-size: 0.875rem; color: var(--ink-soft);
    box-shadow: var(--shadow-md);
}
.media-badge i { color: var(--green); font-size: 1rem; }
.media-badge strong { color: var(--ink); font-weight: 800; }

.media-tag-premium {
    position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; border-radius: 999px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,200,83,0.35);
}

/* Solution content */
.solution-content { padding: 0; }

.solution-eyebrow {
    display: inline-block; font-size: 0.8125rem; font-weight: 700;
    color: var(--green-dark); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1rem;
    position: relative; padding-left: 28px;
}
.solution-eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 20px; height: 2px; background: var(--green);
}

.solution-content h3 {
    font-size: clamp(1.625rem, 2vw + 0.5rem, 2.25rem);
    line-height: 1.15; margin-bottom: 1rem;
    letter-spacing: -0.025em; font-weight: 800;
}
.content-sub {
    display: block; font-size: 0.62em; color: var(--ink-muted);
    font-weight: 500; margin-top: 0.375rem;
}

.solution-content > p {
    color: var(--ink-muted); font-size: 1.0625rem;
    line-height: 1.65; margin-bottom: 1.5rem; max-width: 560px;
}

.solution-points {
    display: flex; flex-direction: column; gap: 0.75rem;
    margin-bottom: 2rem;
}
.solution-points li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.5;
}
.solution-points i {
    color: var(--green); font-size: 1.125rem; flex-shrink: 0;
    margin-top: 1px;
}

.solution-actions {
    display: flex; align-items: center; gap: 1.25rem;
    flex-wrap: wrap;
}
.solution-meta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; color: var(--ink-muted); font-weight: 600;
}
.solution-meta i { color: var(--green); }

.solutions-note {
    text-align: center; font-size: 0.8125rem; color: var(--ink-muted);
    margin-bottom: 2rem; font-style: italic;
}
.solutions-cta { text-align: center; }

/* === AUDIENCE === */
.audience-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.audience-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); transition: transform var(--t-base);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-img { aspect-ratio: 16/9; overflow: hidden; }
.audience-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.audience-card:hover .audience-img img { transform: scale(1.05); }
.audience-body { padding: 2rem; }
.audience-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 0.875rem; background: var(--green-bg); color: var(--green-dark);
    border-radius: 999px; font-size: 0.8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1rem;
}
.audience-body h3 { font-size: 1.625rem; margin-bottom: 0.875rem; }
.audience-body > p { color: var(--ink-muted); margin-bottom: 1.25rem; }
.audience-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.audience-list li {
    display: inline-flex; align-items: center; gap: 0.625rem;
    font-size: 0.9375rem; color: var(--ink-soft);
}
.audience-list i { color: var(--green); }
.link-arrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; color: var(--green-dark); transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 0.75rem; }

/* === PROCESS === */
.process { background: var(--bg-alt); }
.process-timeline {
    position: relative; max-width: 880px; margin: 0 auto;
}
.process-line {
    position: absolute; left: 36px; top: 30px; bottom: 30px; width: 2px;
    background: linear-gradient(180deg, var(--green) 0%, var(--blue) 100%);
    opacity: 0.2;
}
.process-step {
    display: grid; grid-template-columns: 88px 1fr; gap: 1.5rem; align-items: flex-start;
    padding: 1.5rem 0; position: relative;
}
.step-number {
    width: 72px; height: 72px; border-radius: 50%;
    background: white; border: 2px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    font-size: 1.125rem; color: var(--ink); position: relative; z-index: 1;
    box-shadow: var(--shadow-md); transition: all var(--t-base);
}
.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; border-color: transparent; transform: scale(1.05);
}
.step-content {
    background: white; padding: 1.75rem 2rem;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    transition: all var(--t-base);
}
.process-step:hover .step-content {
    box-shadow: var(--shadow-lg); border-color: transparent; transform: translateX(4px);
}
.step-icon {
    display: inline-flex; padding: 0.625rem; border-radius: 10px;
    background: var(--green-bg); color: var(--green-dark);
    margin-bottom: 1rem; font-size: 1.125rem;
}
.step-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step-content > p { color: var(--ink-muted); font-size: 0.9375rem; margin-bottom: 1rem; }
.step-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 0.75rem; background: var(--green-bg);
    border-radius: 999px; font-size: 0.8125rem; font-weight: 600; color: var(--green-dark);
}
.step-tag i { font-size: 0.75rem; }

.process-cta { text-align: center; margin-top: 3rem; }

/* === TRUST === */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (max-width: 992px) {
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
    padding: 2rem; background: white;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    transition: all var(--t-base); position: relative; overflow: hidden;
}
.trust-card::after {
    content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
    background: radial-gradient(circle at top right, rgba(0,200,83,0.08), transparent 70%);
    border-radius: 50%; opacity: 0; transition: opacity var(--t-base);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.trust-card:hover::after { opacity: 1; }
.trust-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(46,204,113,0.15) 100%);
    color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.375rem; margin-bottom: 1.25rem;
}
.trust-card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; }
.trust-card p { color: var(--ink-muted); font-size: 0.9375rem; }

/* === TESTIMONIALS === */
.testimonials { background: var(--bg-alt); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial {
    padding: 2rem; background: white;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    position: relative; transition: all var(--t-base);
}
.testimonial::before {
    content: '"'; position: absolute; top: 1rem; right: 1.5rem;
    font-size: 5rem; color: var(--green); opacity: 0.1;
    font-family: serif; line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--orange); font-size: 0.9375rem; }
.testimonial-text { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: white; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 0.9375rem; color: var(--ink); }
.author-info span { font-size: 0.8125rem; color: var(--ink-muted); }

/* === FINAL CTA === */
.final-cta {
    background: var(--navy);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0,200,83,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(52,152,219,0.12) 0%, transparent 40%);
    color: white; position: relative; overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.cta-wrapper {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.cta-content .section-title { color: white; }
.cta-content > p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; font-size: 1.0625rem; }

.cta-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.cta-features li {
    display: inline-flex; align-items: center; gap: 0.625rem;
    color: rgba(255,255,255,0.9); font-size: 0.9375rem;
}
.cta-features i { color: var(--green-light); }

.cta-contact { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius); transition: all var(--t-base);
    backdrop-filter: blur(8px);
}
.contact-link:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); border-color: var(--green); }
.contact-link i {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green); color: white;
    display: inline-flex; align-items: center; justify-content: center;
}
.contact-link div { display: flex; flex-direction: column; }
.contact-link span { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }
.contact-link strong { font-size: 1rem; color: white; }

/* === FORM === */
.cta-form-wrapper {
    background: white; padding: 2.5rem;
    border-radius: var(--radius-xl); color: var(--ink);
    box-shadow: var(--shadow-xl); position: relative;
}
.cta-form h3 {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--ink) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.form-subtitle { color: var(--ink-muted); font-size: 0.9375rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: 0.8125rem; font-weight: 600;
    color: var(--ink-soft); margin-bottom: 0.5rem;
}
.form-group input, .form-group select {
    width: 100%; padding: 0.875rem 1rem;
    border: 1.5px solid var(--line); border-radius: 12px;
    font-size: 0.9375rem; background: white; color: var(--ink);
    transition: all var(--t-fast);
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0,200,83,0.12);
}
.form-group input::placeholder { color: var(--ink-light); }

.form-checkbox { display: flex; align-items: flex-start; gap: 0.625rem; }
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); }
.form-checkbox label { font-size: 0.8125rem; color: var(--ink-muted); margin: 0; cursor: pointer; }

.form-trust {
    text-align: center; font-size: 0.8125rem; color: var(--ink-muted);
    margin-top: 0.875rem;
}
.form-trust i { color: var(--green); margin-right: 0.375rem; }

.form-success {
    display: none; padding: 2rem; text-align: center;
}
.form-success.show { display: block; animation: successFade 400ms ease; }
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 1rem; }
.form-success h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--ink); }
.form-success p { color: var(--ink-muted); }

@keyframes successFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-content-hidden { display: none; }

/* === FOOTER === */
.footer {
    background: var(--navy-deep); color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem; font-size: 0.875rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { margin: 1.25rem 0; line-height: 1.7; max-width: 360px; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.375rem 0.75rem; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 999px;
    font-size: 0.75rem; font-weight: 600; color: white;
}
.footer-badge i { color: var(--green-light); }

.footer-col h4 {
    color: white; font-size: 0.875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul a { color: rgba(255,255,255,0.65); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--green-light); }

.footer-contact li { display: inline-flex; align-items: center; gap: 0.625rem; }
.footer-contact i { color: var(--green-light); width: 16px; }
.footer-cta { margin-top: 1.25rem; }

.footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8125rem; color: rgba(255,255,255,0.55);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--green-light); }

/* === STICKY MOBILE CTA === */
.sticky-mobile-cta {
    display: none; position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 95;
    align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: white; border-radius: 999px;
    font-size: 0.9375rem; font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,200,83,0.4);
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1), transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.fade-up {
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 800ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--delay, 0) * 1ms);
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .audience-grid { grid-template-columns: 1fr; }
    .cta-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .nav { display: none; }
    .menu-toggle { display: flex; }

    /* Hero stats bar - 2 colonnes sur tablet */
    .hero-stat-divider { display: none; }
    .hero-stats-grid {
        display: grid; grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1.5rem;
    }
    .hero-stat-feature { grid-column: 1 / -1; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }

    /* Solutions - colonnes empilées */
    .solution-row, .solution-row.reverse {
        grid-template-columns: 1fr; gap: 2rem;
    }
    .solution-row.reverse .solution-media { order: 1; }
    .solution-row.reverse .solution-content { order: 2; }
}

@media (max-width: 768px) {
    .hero { padding: 7.5rem 0 0; min-height: auto; }
    .hero-inner { padding: 1rem 1.5rem 3rem; }
    .hero-trust { gap: 0.625rem 1rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .hero-scroll { display: none; }

    /* Hero stats bar - empilé sur mobile */
    .hero-stats-bar { padding: 1.25rem 0; }
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .hero-stat-feature { grid-column: 1 / -1; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .hero-stat-icon { width: 40px; height: 40px; font-size: 1rem; }
    .hero-stat-feature .hero-stat-icon { width: 56px; height: 56px; font-size: 1.5rem; }

    .form-row { grid-template-columns: 1fr; }
    .cta-features { grid-template-columns: 1fr; }
    .cta-form-wrapper { padding: 1.75rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .header-actions .btn-sm { display: none; }
    .sticky-mobile-cta { display: inline-flex; }
    .header-actions { gap: 0.5rem; }

    .process-step { grid-template-columns: 1fr; gap: 1rem; }
    .process-line { display: none; }
    .step-number { width: 56px; height: 56px; }

    /* Solutions mobile */
    .solution-media { aspect-ratio: 16/11; }
    .solution-actions { flex-direction: column; align-items: stretch; gap: 0.875rem; }
    .solution-actions .btn { width: 100%; }
    .solution-actions .solution-meta { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .badges-track { gap: 1.5rem; }
    .stat-block { padding: 1.75rem 1.25rem; }
    .step-content { padding: 1.25rem; }

    .hero-stats-grid { grid-template-columns: 1fr; }
    .hero-stat-feature { padding-bottom: 1rem; }
    .hero-stat-item { padding-bottom: 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .hero-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
