﻿/* ============================================================
   WILD CHARGE V3 — Feuille de style principale
   Mobile-first | BEM | CSS custom properties | Dark Premium
   ============================================================ */


/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Couleurs */
    --color-primary:          #00C950;
    --color-primary-dark:     #00a843;
    --color-primary-light:    #33d472;
    --color-primary-electric: #3DFF6E;
    --color-primary-glow:  rgba(0, 201, 80, 0.15);
    --color-bg:            #09090F;
    --color-surface:       #0F1117;
    --color-surface-2:     #161B26;
    --color-text:          #F0F2F8;
    --color-text-muted:    #9AA3B5;
    --color-border:        rgba(255, 255, 255, 0.07);
    --color-border-bright: rgba(255, 255, 255, 0.14);
    --color-white:         #ffffff;
    --color-error:         #FF4D4D;
    --color-success:       #C8EDD6;

    /* Typographie */
    --font-display:  'Space Grotesk', system-ui, sans-serif;
    --font-primary:  'Inter', system-ui, sans-serif;
    --font-size-xs:   0.75rem;
    --font-size-sm:   0.875rem;
    --font-size-base: 1rem;
    --font-size-lg:   1.125rem;
    --font-size-xl:   1.25rem;
    --font-size-2xl:  1.5rem;
    --font-size-3xl:  1.875rem;
    --font-size-4xl:  2.25rem;
    --font-size-5xl:  3rem;
    --font-size-6xl:  3.75rem;

    /* Espacement */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --container-max:     1200px;
    --container-padding: var(--space-4);
    --nav-height:        72px;

    /* Bordures */
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-2xl: 32px;

    /* Transitions */
    --transition-base:  0.2s ease;
    --transition-slow:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ============================================================
   2. ANIMATIONS KEYFRAMES
   ============================================================ */
@keyframes glowFloat {
    0%, 100% { transform: translateY(0)    scale(1); }
    50%       { transform: translateY(-40px) scale(1.08); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.1); }
}
@keyframes pulseDot {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.6); }
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(5px); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes revealUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes spinSlow {
    to { transform: rotate(360deg); }
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); }


/* ============================================================
   4. UTILITAIRES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-12);
}
.section-header__eyebrow {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}
.section-header__title {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}
.section-header__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
}


/* ============================================================
   5. CURSOR GLOW
   ============================================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(200, 237, 214, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}
@media (hover: none) { .cursor-glow { display: none; } }


/* ============================================================
   6. SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 10000;
    transition: top var(--transition-base);
}
.skip-link:focus { top: var(--space-4); }


/* ============================================================
   7. BOUTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px var(--space-6);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    letter-spacing: -0.01em;
    border: 2px solid transparent;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.2s ease,
                background-color 0.2s ease,
                border-color 0.2s ease;
    white-space: nowrap;
}
.btn--lg { padding: 16px var(--space-8); font-size: var(--font-size-lg); }
.btn--sm { padding: 10px var(--space-4); font-size: var(--font-size-sm); }

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background-color: var(--color-primary-electric);
    border-color: var(--color-primary-electric);
    color: var(--color-bg);
    box-shadow: 0 0 32px rgba(0, 212, 122, 0.55), 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-border-bright);
}
.btn--ghost:hover {
    background-color: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn--magnetic {
    will-change: transform;
}

/* Bouton charge : fond noir pour que la barre verte soit bien visible */
.btn--primary.btn--charge {
    background-color: var(--color-bg);
    color: var(--color-primary);
    border-color: rgba(200, 237, 214, 0.35);
}
.btn--primary.btn--charge:hover {
    background-color: var(--color-surface);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 32px rgba(0, 212, 122, 0.45), 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ── Bouton Charge FX — DOM + Canvas (géré par JS) ──────── */
.btn--charge {
    position: relative;
    overflow: hidden;
}
.btn-charge__label {
    position: relative;
    z-index: 3;
}
.btn-charge__fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg,
        rgba(0, 212, 122, 0.15) 0%,
        rgba(0, 212, 122, 0.40) 75%,
        rgba(0, 212, 122, 0.10) 100%);
    pointer-events: none;
    z-index: 0;
}
.btn-charge__edge {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: #00D47A;
    box-shadow:
        0 0  8px  4px rgba(0, 212, 122, 1),
        0 0 18px  8px rgba(0, 212, 122, 0.7),
        0 0 32px 14px rgba(0, 212, 122, 0.4);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.1s ease;
}
.btn-charge__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}


/* ============================================================
   8. NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    height: var(--nav-height);
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.header.is-scrolled {
    background-color: rgba(9, 9, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}
.nav__logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: 10;
}
.nav__burger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-active .nav__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-active .nav__burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-active .nav__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: #09090F;
    padding: var(--space-8) var(--container-padding);
    gap: var(--space-6);
    border-top: 1px solid rgba(200, 237, 214, 0.18);
    z-index: 9999;
}
.nav__menu.is-open { display: flex; }

.nav__menu .nav__link {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__link {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}
.nav__link:hover { color: var(--color-white); }

.nav__link--cta {
    display: inline-flex;
    align-items: center;
    padding: 10px var(--space-6);
    background: transparent;
    color: #00C950;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: color var(--transition-base);
}
.nav__link--cta:hover {
    background: transparent;
    color: #00a843;
}


/* ============================================================
   9. HERO V3
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg);
}

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

.hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero__glow--1 {
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    background: radial-gradient(circle at center, rgba(200, 237, 214, 0.16) 0%, transparent 65%);
    top: -25%;
    right: -15%;
    animation: glowFloat 12s ease-in-out infinite;
}
.hero__glow--2 {
    width: min(500px, 70vw);
    height: min(500px, 70vw);
    background: radial-gradient(circle at center, rgba(200, 237, 214, 0.10) 0%, transparent 65%);
    bottom: -15%;
    left: -10%;
    animation: glowFloat 16s ease-in-out infinite reverse;
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-24);
    width: 100%;
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.hero__split {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

.hero__text { max-width: 580px; }

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__visual-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255,255,255,0.06),
        0 0 60px rgba(200, 237, 214, 0.08);
    animation: float 7s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .hero__split {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
    .hero__text { max-width: none; }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 16px;
    background: rgba(200, 237, 214, 0.08);
    border: 1px solid rgba(200, 237, 214, 0.22);
    border-radius: 100px;
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-8);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}
.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulseDot 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}
.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(35px);
}
.hero--loaded .hero__title-line {
    animation: heroSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero--loaded .hero__title-line:nth-child(1) { animation-delay: 0.15s; }
.hero--loaded .hero__title-line:nth-child(2) { animation-delay: 0.30s; }
.hero--loaded .hero__title-line:nth-child(3) { animation-delay: 0.45s; }

.hero__title-accent { color: var(--color-primary); }

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: var(--space-10);
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.65s forwards;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-16);
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.80s forwards;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    justify-content: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.95s forwards;
}
.hero__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero__stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.6s ease 1.2s forwards;
}
.hero__scroll-arrow {
    display: block;
    width: 22px;
    height: 22px;
    border-right: 2px solid rgba(255,255,255,0.25);
    border-bottom: 2px solid rgba(255,255,255,0.25);
    transform: rotate(45deg);
    animation: arrowBounce 1.6s ease-in-out infinite;
}


/* ============================================================
   10. MARQUEE
   ============================================================ */
.marquee {
    overflow: hidden;
    background: var(--color-surface);
    border-block: 1px solid var(--color-border);
    padding-block: var(--space-4);
}
.marquee__inner {
    display: flex;
    overflow: hidden;
}
.marquee__track {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    will-change: transform;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__sep {
    color: var(--color-primary);
    font-size: 0.7rem;
    opacity: 0.7;
}


/* ============================================================
   11. BORNE
   ============================================================ */
.borne {
    padding-block: var(--space-24);
}

/* ============================================================
   11b. BORNE — SPLIT LAYOUT
   ============================================================ */

.borne__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

@media (max-width: 639px) {
    .borne__split {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

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

.borne__img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.5));
}

/* Specs list */
.borne__specs {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.borne__spec {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding-block: var(--space-6);
    border-bottom: 1px solid rgba(200, 237, 214, 0.1);
}

.borne__spec:first-child {
    border-top: 1px solid rgba(200, 237, 214, 0.1);
}

.borne__spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.borne__spec-title {
    display: block;
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.borne__spec-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   12. SOLUTIONS
   ============================================================ */
.solutions {
    padding-block: var(--space-24);
    background: var(--color-surface);
}
.solutions__grid {
    display: grid;
    gap: var(--space-4);
}

.solution-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
    border: 1px solid var(--color-border);
}
.solution-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.solution-card:hover .solution-card__bg { transform: scale(1.06); }
.solution-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(9, 9, 15, 0.96) 25%,
        rgba(9, 9, 15, 0.55) 65%,
        rgba(9, 9, 15, 0.2) 100%
    );
    transition: opacity 0.4s ease;
}
.solution-card:hover .solution-card__overlay { opacity: 0.88; }
.solution-card__content {
    position: relative;
    z-index: 1;
    padding: var(--space-8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}
.solution-card__title {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}
.solution-card__text {
    color: rgba(240, 242, 248, 0.82);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}
.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    transition: gap 0.2s ease;
}
.solution-card__link:hover { gap: var(--space-3); }


/* ============================================================
   12b. SOLUTIONS — BENTO GRID
   ============================================================ */
.solutions__bento {
    display: grid;
    gap: var(--space-4);
}

.solution-card--hero {
    min-height: 480px;
}

.solution-card--hero .solution-card__content {
    min-height: 480px;
    padding: var(--space-8);
}

.solution-card--sm {
    min-height: 0;
    background: var(--color-surface-2);
    border-color: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--color-primary);
    transition: background var(--transition-base), box-shadow var(--transition-slow);
}

.solution-card--sm .solution-card__content {
    min-height: 0;
}

.solution-card--sm:hover {
    background: rgba(200, 237, 214, 0.05);
    box-shadow: 0 8px 32px rgba(200, 237, 214, 0.1);
}

/* -------- Solution panel (right column unified) -------- */
.solution-panel {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border-bright);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.solution-panel__eyebrow {
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solution-panel__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.solution-panel__item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-border);
}

.solution-panel__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.solution-panel__num {
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(200, 237, 214, 0.12);
    border: 1px solid rgba(200, 237, 214, 0.3);
    border-radius: var(--radius-sm);
    padding: 3px 8px;
    flex-shrink: 0;
    margin-top: 3px;
    letter-spacing: 0.05em;
}

.solution-panel__body strong {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-white);
    display: block;
    margin-bottom: var(--space-2);
}

.solution-panel__body p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.solution-card__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(200, 237, 214, 0.15);
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    align-self: flex-start;
}

.solution-card__title--hero {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.solution-card__stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-4);
    background: rgba(200, 237, 214, 0.10);
    border: 1px solid rgba(200, 237, 214, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}

.solution-card__stat-value {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.solution-card__stat-label {
    font-size: var(--font-size-xs);
    color: rgba(240, 242, 248, 0.82);
    line-height: 1.4;
}

.solution-card__content--sm {
    justify-content: space-between;
    min-height: 0;
    padding: var(--space-5) var(--space-6);
    gap: var(--space-3);
}

.solution-card__content--sm .solution-card__text {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-card__content--sm .solution-card__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-1);
}

.solution-card__icon {
    font-size: 1.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 0;
}


/* ============================================================
   13. COMPTEURS
   ============================================================ */
.counters {
    padding-block: var(--space-20);
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}
.counters::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 237, 214, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.counters__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.counter-item {
    background: var(--color-surface);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    transition: background-color var(--transition-base);
}
.counter-item:hover { background: var(--color-surface-2); }
.counter-item__value {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: var(--space-2);
}
.counter-item__value .js-counter { color: var(--color-primary); }
.counter-item__label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.5;
}


/* ============================================================
   14. OFFRE / ÉTAPES
   ============================================================ */
.offre {
    padding-block: var(--space-24);
    background: var(--color-surface);
}
.offre__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: steps;
    position: relative;
    max-width: 760px;
    margin-inline: auto;
}
.offre__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    align-items: flex-start;
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.offre__step:last-child { border-bottom: none; }

.offre__step-number {
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(200, 237, 214, 0.1);
    border: 1px solid rgba(200, 237, 214, 0.2);
    border-radius: var(--radius-md);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}
.offre__step-title {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}
.offre__step-desc {
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: var(--font-size-base);
}


/* ============================================================
   15. PARTENAIRES — NEON LOGO STRIP
   ============================================================ */
.partenaires {
    padding-block: var(--space-24) 0;
    background: var(--color-bg);
}
.partenaires .section-header {
    margin-bottom: var(--space-14);
}

/* Bande défilante */
.partners-strip {
    position: relative;
    overflow: hidden;
    padding-block: var(--space-10);
    background: rgba(0, 201, 80, 0.03);
    border-block: 1px solid rgba(0, 201, 80, 0.2);
}
.partners-strip::before,
.partners-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}
.partners-strip::before { left: 0;  background: linear-gradient(to right, var(--color-bg), transparent); }
.partners-strip::after  { right: 0; background: linear-gradient(to left,  var(--color-bg), transparent); }

/* Piste — gap:0, margin-right sur chaque badge pour que -50% soit exact */
.partners-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 18s linear infinite;
    will-change: transform;
}

/* Badge circulaire — enseigne de bar */
.partner-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    border: 2px solid #00C950;
    background: rgba(0, 201, 80, 0.05);
    padding: var(--space-4);
    gap: var(--space-2);
    flex-shrink: 0;
    position: relative;
    text-align: center;
    margin-right: 4rem;
    white-space: normal;
    transition: border-color var(--transition-base), background var(--transition-base);
}
.partner-badge:hover {
    background: rgba(0, 201, 80, 0.1);
    border-color: #3DFF6E;
}
/* Anneau intérieur décoratif */
.partner-badge::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 201, 80, 0.3);
    pointer-events: none;
}

/* Icône */
.partner-badge__icon {
    color: #00C950;
    flex-shrink: 0;
}

/* Sigle abrégé (V&B) */
.partner-badge__abbr {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #00C950;
}
.partner-badge__amp {
    color: #3DFF6E;
}

/* Nom du partenaire */
.partner-badge__name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    color: #00C950;
}


/* ============================================================
   16. FORMULAIRE CONTACT
   ============================================================ */
.contact {
    padding-block: var(--space-24);
    background: #ffffff;
}

/* Messages de feedback formulaire */
.contact-feedback {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: 1.5;
}
.contact-feedback p { margin: 0; }
.contact-feedback svg { flex-shrink: 0; margin-top: 2px; }
.contact-feedback--success {
    background: #f0fdf4;
    border: 1.5px solid #00C950;
    color: #166534;
}
.contact-feedback--success svg { color: #00C950; }
.contact-feedback--error {
    background: #fef2f2;
    border: 1.5px solid #ef4444;
    color: #991b1b;
}
.contact-feedback--error svg { color: #ef4444; }

.contact .section-header__eyebrow { color: #00C950; }
.contact .section-header__title   { color: #00C950; }
.contact .section-header__subtitle { color: rgba(9,9,15,0.7); }

.contact .contact-form__label {
    color: rgba(9, 9, 15, 0.85);
    font-weight: 700;
}

.contact .contact-form__input,
.contact .contact-form__select,
.contact .contact-form__textarea {
    background: #ffffff;
    border: 1.5px solid #00C950;
    color: #09090F;
    box-shadow: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact .contact-form__input::placeholder,
.contact .contact-form__textarea::placeholder {
    color: rgba(9, 9, 15, 0.35);
}
.contact .contact-form__input:hover,
.contact .contact-form__select:hover,
.contact .contact-form__textarea:hover {
    border-color: #00a843;
    box-shadow: 0 0 0 3px rgba(0, 201, 80, 0.1);
}
.contact .contact-form__input:focus,
.contact .contact-form__select:focus,
.contact .contact-form__textarea:focus {
    border-color: #00a843;
    box-shadow: 0 0 0 3px rgba(0, 201, 80, 0.18);
    outline: none;
}
.contact .contact-form__select option {
    background: #ffffff;
    color: #09090F;
}

.contact .btn--primary {
    background-color: var(--color-bg);
    color: var(--color-primary);
    border-color: var(--color-bg);
}
.contact .btn--primary:hover {
    background-color: var(--color-surface);
    border-color: var(--color-surface);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.contact-form {
    max-width: 680px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}
.contact-form__row {
    display: grid;
    gap: var(--space-5);
}
.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.contact-form__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    background: var(--color-bg);
    border: 1px solid var(--color-border-bright);
    border-radius: var(--radius-md);
    padding: 14px var(--space-4);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
    width: 100%;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(200, 237, 214, 0.12);
}
.contact-form__input.is-invalid,
.contact-form__select.is-invalid,
.contact-form__textarea.is-invalid {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
}
.contact-form__select { cursor: pointer; }
.contact-form__select option { background: var(--color-surface-2); }
.contact-form__textarea { resize: vertical; min-height: 120px; }
.contact-form__honeypot { position: absolute; left: -9999px; }
.contact-form__submit { align-self: flex-start; }


/* ============================================================
   17. PAGES VILLES
   ============================================================ */
.page-hero {
    padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem));
    padding-bottom: clamp(4rem, 8vw, 6rem);
    text-align: center;
}
.page-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-8);
}
.page-cta {
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    background: rgba(0, 201, 80, 0.03);
    border-top: 1px solid rgba(0, 201, 80, 0.12);
}
.footer__zones-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
}
.footer__zones ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-4);
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding-block: var(--space-12);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}
.footer__tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}
.footer__email {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    transition: color var(--transition-base);
}
.footer__email:hover { color: var(--color-primary-light); }

.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-2);
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: #00C950;
    border: none;
    color: #000;
    transition: background var(--transition-base),
                transform var(--transition-base),
                box-shadow var(--transition-base);
}
.footer__social-link:hover {
    background: #00a843;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 201, 80, 0.4);
}
.footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4) var(--space-6);
    align-items: flex-start;
}
.footer__link {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}
.footer__link:hover { color: var(--color-primary); }
.footer__copy {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    opacity: 0.6;
    margin-top: var(--space-4);
}


/* ============================================================
   18. SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   19. PAGES SOLUTIONS — HERO
   ============================================================ */
.hero__eyebrow {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.solution-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.solution-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.solution-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.solution-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9,9,15,0.5) 0%,
        rgba(9,9,15,0.7) 55%,
        rgba(9,9,15,0.96) 100%
    );
}
.solution-hero__content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-20);
}
.solution-hero__back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-8);
    transition: color var(--transition-base);
}
.solution-hero__back:hover { color: var(--color-primary); }
.solution-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: var(--space-6);
}
.solution-hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: var(--space-10);
}


/* ============================================================
   20. PAGES SOLUTIONS — PROBLÈME & STATS
   ============================================================ */
.solution-problem {
    padding-block: var(--space-20);
    background: var(--color-surface);
}
.solution-problem__grid {
    display: grid;
    gap: var(--space-12);
}
.solution-problem__text .section-header__eyebrow {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}
.solution-problem__title {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}
.solution-problem__text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}
.solution-problem__text p:last-child { margin-bottom: 0; }
.solution-problem__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}
.stat-card {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: border-color var(--transition-base);
}
.stat-card:hover { border-color: rgba(0,208,132,0.3); }
.stat-card__value {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-card__label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}


/* ============================================================
   21. PAGES SOLUTIONS — BÉNÉFICES
   ============================================================ */
.solution-benefits { padding-block: var(--space-20); }
.benefits-grid {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-12);
}
.benefit-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.benefit-card:hover {
    border-color: rgba(0,208,132,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}
.benefit-card__icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: var(--space-4);
}
.benefit-card__title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}
.benefit-card__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.75;
}


/* ============================================================
   22. PAGES SOLUTIONS — TÉMOIGNAGE
   ============================================================ */
.solution-temoignage {
    padding-block: var(--space-20);
    background: var(--color-surface);
}
.solution-temoignage__card {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-8);
    backdrop-filter: blur(20px);
}
.temoignage-card__quote {
    font-size: 5rem;
    line-height: 0.6;
    color: var(--color-primary);
    opacity: 0.25;
    font-family: Georgia, serif;
    position: absolute;
    top: var(--space-6);
    left: var(--space-8);
}
.solution-temoignage__text {
    font-size: var(--font-size-lg);
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-8);
    padding-top: var(--space-6);
}
.solution-temoignage__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}
.temoignage-card__name {
    display: block;
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-white);
    font-style: normal;
}
.temoignage-card__role {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}


/* ============================================================
   23. PAGES SOLUTIONS — CTA FINAL
   ============================================================ */
.solution-cta { padding-block: var(--space-20); }
.solution-cta__inner {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-16) var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.solution-cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.solution-cta__title {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-bg);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}
.solution-cta__subtitle {
    font-size: var(--font-size-lg);
    color: rgba(9,9,15,0.7);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.solution-cta .btn--primary {
    background-color: var(--color-bg);
    color: var(--color-primary);
    border-color: var(--color-bg);
    position: relative;
    z-index: 1;
}
.solution-cta .btn--primary:hover {
    background-color: var(--color-surface);
    border-color: var(--color-surface);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}


/* ============================================================
   24. PAGES LÉGALES
   ============================================================ */
.legal-page {
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-24);
    min-height: 100vh;
}
.legal-page__header {
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border);
}
.legal-page__title {
    font-family: var(--font-display);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-2);
}
.legal-page__date {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}
.legal-page__body {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}
.legal-block__title {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}
.legal-block p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-3);
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-block a:hover { color: var(--color-primary-light); }
.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-block: var(--space-3);
    padding-left: var(--space-4);
}
.legal-list li {
    color: var(--color-text-muted);
    line-height: 1.7;
    position: relative;
}
.legal-list li::before {
    content: '—';
    position: absolute;
    left: calc(-1 * var(--space-4));
    color: var(--color-primary);
    font-weight: 700;
}


/* ============================================================
   25. RESPONSIVE — TABLETTE (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
    :root { --container-padding: var(--space-6); }

    .section-header__title   { font-size: var(--font-size-4xl); }
    .contact-form__row        { grid-template-columns: 1fr 1fr; }
    .solutions__grid          { grid-template-columns: 1fr 1fr; }
    .solutions__bento         { grid-template-columns: 1fr 1fr; }
    .solution-card--hero      { grid-column: 1 / -1; }
    .solution-problem__grid   { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-16); }
    .benefits-grid            { grid-template-columns: 1fr 1fr; }
    .counters__grid           { grid-template-columns: repeat(4, 1fr); }
    .solution-temoignage__card { padding: var(--space-12); }
}


/* ============================================================
   26. RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
    :root { --container-padding: var(--space-8); }

    /* Nav desktop */
    .nav__burger { display: none; }
    .nav__menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        padding: 0;
        gap: var(--space-8);
        align-items: center;
        border-top: none;
    }
    .nav__link { font-size: var(--font-size-base); }

    .section-header__title { font-size: var(--font-size-5xl); }
    .solutions__grid        { grid-template-columns: repeat(3, 1fr); }

    .solutions__bento {
        grid-template-columns: 3fr 2fr;
        align-items: stretch;
    }
    .solution-card--hero {
        grid-column: 1;
        min-height: 580px;
    }
    .solution-card--hero .solution-card__content {
        min-height: 580px;
    }
    .solution-panel {
        grid-column: 2;
        align-self: stretch;
    }
    .solution-card__title--hero {
        font-size: var(--font-size-4xl);
    }
    .benefits-grid          { grid-template-columns: repeat(3, 1fr); }

    .footer__inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .footer__zones {
        order: 10;
        width: 100%;
        border-top: 1px solid var(--color-border);
        padding-top: var(--space-6);
        margin-top: var(--space-2);
    }
    .footer__copy { order: 11; margin-top: 0; width: 100%; }

    .solution-cta__inner { padding: var(--space-20) var(--space-16); }
    .solution-cta__title { font-size: var(--font-size-4xl); }
}
