/* ── Font Awesome font-display override (CDN ne définit pas font-display) ── */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: optional;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-brands-400.woff2') format('woff2');
}

:root {
    /* Brand terracotta */
    --accent: #E0734B;
    --accent2: #D97757;
    --accent-dark: #C35630;
    --accent-darker: #A34A2E;
    --accent-pastel: #FFB8A8;
    --accent-glow: rgba(224, 115, 75, 0.35);
    --accent-08: rgba(224, 115, 75, 0.08);
    --accent-10: rgba(224, 115, 75, 0.10);
    --accent-12: rgba(224, 115, 75, 0.12);
    --accent-15: rgba(224, 115, 75, 0.15);
    --accent-20: rgba(224, 115, 75, 0.20);
    --accent-30: rgba(224, 115, 75, 0.30);

    /* Neutral palette */
    --dark: #181818;
    --dark-purple: #181818;
    --dark2: #1a1a1a;
    --ink: #111110;
    --muted: #6b7280;
    --ink3: #9ca3af;

    /* Cream palette */
    --cream: #FAF8F5;
    --light-cream: #EFE8DE;
    --light-cream-dark: #E8E2D6;
    --cream-mid: #efe8de;
    --cream-border: #e8e2d6;

    /* Borders & inputs */
    --border-light: #e5e7eb;
    --white: #ffffff;
    --white-05: rgba(255, 255, 255, 0.05);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-10: rgba(255, 255, 255, 0.10);
    --white-30: rgba(255, 255, 255, 0.30);
    --white-50: rgba(255, 255, 255, 0.50);
    --white-60: rgba(255, 255, 255, 0.60);
    --white-65: rgba(255, 255, 255, 0.65);
    --white-70: rgba(255, 255, 255, 0.70);
    --white-80: rgba(255, 255, 255, 0.80);

    /* Shadows */
    --shadow-sm: rgba(0, 0, 0, 0.07);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --shadow-lg: rgba(0, 0, 0, 0.20);
    --shadow-accent: rgba(224, 115, 75, 0.25);

    /* Utilities */
    --star-color: #FBBF24;
    --bg-input: #f5f5f5;

    /* Legacy aliases */
    --purple: #E0734B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.5;
}

/* ── TOP BANNER ── */
.top-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    color: white;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
}

.marquee-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}

.urgency-msg {
    color: var(--accent);
    text-wrap-mode: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── NAV : tous les styles sont définis dans header.php <style> ── */

/* HERO */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 85vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #F5EFE7 0%, var(--light-cream) 100%);
    margin: 0px 20px;
    border-radius: 24px;
}

.hero-left {
    background-color: var(--light-cream);
    padding: 8% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #181818;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #181818;
}

.neon-text {
    color: var(--accent);
    display: block;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars-mini {
    color: #FBBF24;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.mw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-12);
    border: 1px solid var(--shadow-accent);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    color: #181818;
    font-weight: 500;
    margin-bottom: 18px;
    align-self: flex-start;
}

.mw-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.btn-primary-pulse {
    background: #FFFFFF;
    color: var(--dark-purple);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: 0.3s transform ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.btn-primary-pulse .sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.55;
    margin-top: 4px;
}

.btn-outline {
    background: transparent;
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    transition: 0.3s background ease;
    height: fit-content;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary-pulse:hover {
    transform: scale(1.05);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 115, 75, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(224, 115, 75, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 115, 75, 0);
    }
}

.hero-stats-anchor {
    margin-top: 6px;
    display: flex;
    gap: 12px;
}

.metric-card {
    flex: 1;
    background: rgba(224, 115, 75, 0.08);
    border: 1px solid rgba(224, 115, 75, 0.15);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.metric-card .val {
    font-size: 22px;
    font-weight: 900;
    color: #181818;
}

.metric-card .val span {
    color: var(--accent);
}

.metric-card .lbl {
    font-size: 10px;
    color: var(--accent);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: -10px;
    color: white;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.btn-white {
    background: var(--white);
    color: var(--dark-purple);
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
}

.btn-outline {
    border: 1.5px solid rgba(224, 115, 75, 0.3);
    color: #181818;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* SCROLLING CARDS */
.hero-right {
    background-color: var(--light-cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    height: 100%;
}

.col-mask {
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.whatsapp-float i {
    font-size: 32px;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scroll-down {
    animation: scrollDown 25s linear infinite;
}

.scroll-up {
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollDown {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* TYPOGRAPHY & LAYOUT */
.hero-h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-center {
    text-align: center;
}

.white-text {
    color: var(--white);
}

.muted-text {
    color: rgba(255, 255, 255, 0.6);
}

.italic-violet {
    color: #e0734b;
    font-style: italic;
}

.italic-green {
    color: #22C55E;
    font-style: italic;
}

.container-mid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.white-bg {
    background: var(--white);
}

.dark-bg {
    background: var(--dark);
}

.badge-dark {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
}

/* BENEFITS */
.benefits-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card h3 {
    color: white;
    margin: 15px 0 10px;
    font-size: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
}

/* SIMULATORS */
.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.service-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.service-card[style*="background: #F59E0B"] .service-tag {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* EXTRA SERVICES (White Cards) */
.extra-service-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--light-cream-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extra-service-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
}

.extra-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F8F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #EEEAE0;
}

.extra-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.extra-service-card p {
    font-size: 14px;
    color: #6B6B65;
    line-height: 1.6;
}

/* SIMULATORS */
.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sim-card {
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.2s;
}

.sim-card:hover {
    transform: translateY(-4px);
}

.sim-purple {
    background: #F5F0E6;
}

.sim-green {
    background: #F5F0E6;
}

.sim-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

.sim-purple .sim-icon {
    background: var(--purple);
}

.sim-green .sim-icon {
    background: #181818;
}

.sim-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.sim-card p {
    color: #FFF;
    margin-bottom: 32px;
    font-size: 15px;
}
div.sim-card.sim-green > p {
    color: #181818;
}

.btn-dark-pill {
    background: var(--dark);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
}

/* PROCESS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1.5px solid var(--light-cream-dark);
}

.step-num {
    font-size: 40px;
    color: var(--light-cream-dark);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #6B6B65;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-fanned {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.testi-card {
    border-radius: 24px;
    padding: 36px 32px;
    width: 340px;
    transition: 0.3s;
    color: white;
}

.testi-card:hover {
    transform: scale(1.03) rotate(0deg) !important;
}

.stars {
    display: flex;
    gap: 2;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rotate-1 {
    transform: rotate(1deg);
}

.rotate-2 {
    transform: rotate(2deg);
}

.-rotate-1 {
    transform: rotate(-1deg);
}

.-rotate-2 {
    transform: rotate(-2deg);
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* BLOG */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-outline-dark {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--light-cream-dark);
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    cursor: pointer;
}

.blog-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    background: #F5F0E6;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 14px;
    color: #6B6B65;
    line-height: 1.6;
}

/* ZONES */
.zones-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.zone-tag {
    background: white;
    color: #3D3D3A;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--light-cream-dark);
    transition: 0.2s;
}

.zone-tag:hover {
    border-color: var(--purple);
    color: var(--purple);
}

/* CONTACT METRICS */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-card {
    background: rgba(224, 115, 75, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid rgba(224, 115, 75, 0.15);
    text-align: center;
}

.metric-card .val {
    font-size: 28px;
    color: #181818;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-card .lbl {
    font-size: 12px;
    color: rgba(224, 115, 75, 0.7);
    font-weight: 500;
    text-transform: uppercase;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.metric {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

/* ── CARD IMAGE (hero-right) ── */
.card-img {
    padding: 0;
    min-height: 220px;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    min-height: 220px;
    max-height: 280px;
}
.card-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.card-img-sector {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.65);
}
.card-img-label {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.trust-band {
    padding: 30px 0;
    border: 1px solid var(--light-cream-dark);
    border-left: none;
    border-right: none;
}

.section {
    padding: 100px 20px;
}

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

.container-small {
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d1cdc4;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
}

.btn-purple-full {
    background: var(--purple);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.cream-bg {
    background: var(--cream);
}

.dark-bg {
    background: var(--dark);
}

.white-text {
    color: white;
}

.muted-text {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.italic-green {
    color: #22c55e;
    font-style: italic;
}

.badge-dark {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#auditForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

input,
select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 12px;
    color: white;
    outline: none;
    width: 100%;
}

input:focus {
    border-color: var(--purple);
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 8px;
    border: 1px solid var(--light-cream-dark);
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.faq-answer {
    padding: 0 24px 24px;
    color: #6b6b65;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question span {
    transition: 0.3s;
    color: var(--purple);
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-right {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* MOBILE NAVIGATION */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 3000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-grow: 1;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    opacity: 0.8;
    transition: 0.2s;
}

.mobile-link:hover {
    opacity: 1;
    color: var(--purple);
}

.btn-violet-pill {
    background: var(--purple);
    color: white;
    padding: 16px;
    border-radius: 100px;
    font-weight: 700;
}

.mobile-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-mini {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-tags {
    display: flex;
    gap: 10px;
}

.mobile-tags span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ── FADE-UP ANIMATION ───────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    /* ── Announcement bar — orange vif ── */
    .top-marquee {
        background: #E0734B !important;
        color: #fff !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.05em !important;
        border-bottom: none !important;
    }
    .urgency-msg {
        color: #fff !important;
    }

    /* ── General sections ── */
    .section {
        padding: 20px 20px;
    }

    /* ── Hero ── */
    .hero-section {
        grid-template-columns: 1fr;
        height: auto;
        margin: 0;
        border-radius: 0;
        width: 100%;
        background: #FAF8F5;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 36px 24px 48px;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    /* ── Reorder hero children ── */
    .hero-left .mw-badge      { order: 1; }
    .hero-left h1             { order: 2; }
    .hero-left .hero-desc     { order: 3; }
    .hero-left .trust-badge   { order: 4; }
    .hero-left .hero-btns     { order: 5; }
    .hero-left .hero-stats-anchor { order: 6; }

    /* ── Badge ── */
    .mw-badge {
        background: #111110 !important;
        color: #f0a07a !important;
        border-color: rgba(224,115,75,0.3) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        padding: 6px 14px !important;
        border-radius: 100px !important;
        margin-bottom: 24px !important;
        margin-top: 60px !important;
    }
    .mw-badge-dot {
        animation: mw-pulse 2s infinite;
    }
    @keyframes mw-pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50%       { opacity: 0.5; transform: scale(1.4); }
    }

    /* ── Hero H1 — Syne, grand, impactant ── */
    .hero-left h1 {
        font-family: 'Outfit', sans-serif !important;
        font-size: 52px !important;
        font-weight: 800 !important;
        line-height: 1.0 !important;
        letter-spacing: -0.03em !important;
        color: #111110 !important;
        margin-bottom: 0 !important;
    }
    .hero-left h1 .neon-text {
        display: block;
        color: #E0734B !important;
    }
    .hero-left h1 em.italic-violet {
        font-style: normal;
        color: rgba(224,115,75,0.6) !important;
        display: block;
    }

    /* ── Hero desc ── */
    .hero-desc {
        font-size: 15px !important;
        line-height: 1.65 !important;
        color: #505153 !important;
        font-weight: 400 !important;
        margin: 20px 0 24px !important;
        max-width: 100% !important;
    }

    /* ── Trust badge — social proof card ── */
    .trust-badge {
        width: 100%;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
        padding: 13px 16px;
        margin-bottom: 22px !important;
        gap: 12px;
    }
    .avatar-stack .avatar {
        width: 34px !important;
        height: 34px !important;
        font-size: 11px !important;
        border-color: #FAF8F5 !important;
    }
    .mw-social-text {
        font-size: 12.5px;
        color: #111110;
        line-height: 1.3;
    }
    .stars-mini {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }

    /* ── CTA buttons — horizontal ── */
    .hero-btns {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 28px !important;
    }
    .btn-primary-pulse {
        flex: 1;
        background: #E0734B !important;
        color: #fff !important;
        border-radius: 14px !important;
        padding: 16px 16px !important;
        font-family: 'Outfit', sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 20px rgba(224,115,75,0.35) !important;
        text-align: center !important;
    }
    .btn-primary-pulse .sub {
        display: none !important;
    }
    .btn-outline {
        background: transparent !important;
        color: #111110 !important;
        border: 1.5px solid rgba(15,14,13,0.18) !important;
        border-radius: 14px !important;
        padding: 16px 14px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* ── Hero stats — 3 colonnes ── */
    .hero-stats-anchor {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
    .hero-stats-anchor .metric-card {
        background: #fff !important;
        border-radius: 14px !important;
        padding: 16px 10px !important;
        text-align: center !important;
        border: 1px solid var(--accent-12) !important;
        display: block !important;
    }
    .hero-stats-anchor .metric-card:nth-child(1) {
        display: block !important;
    }
    .hero-stats-anchor .metric-card .val {
        font-family: 'Outfit', sans-serif !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        color: #111110 !important;
        line-height: 1 !important;
    }
    .hero-stats-anchor .metric-card .val span {
        color: #E0734B !important;
    }
    .hero-stats-anchor .metric-card .lbl {
        font-size: 10px !important;
        color: #6b7280 !important;
        margin-top: 4px !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        line-height: 1.3 !important;
    }

    /* ── Services (silos) ── */
    .silos-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .silo-card {
        border-radius: 16px !important;
        padding: 20px 18px !important;
    }
    .silo-links {
        display: none !important;
    }
    .silo-cta {
        font-size: 13px;
        margin-top: 10px;
    }
    .silos-header h2 {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
    }
    .lab-banner {
        border-radius: 16px !important;
        padding: 20px 18px !important;
        flex-direction: column !important;
        gap: 16px !important;
    }
    .lab-banner-cta {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 12px !important;
    }

    /* ── Section avantages ── */
    .benefits-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* ── Témoignages ── */
    .testimonials-fanned {
        grid-template-columns: 1fr !important;
    }
    .testi-card {
        transform: none !important;
        border-radius: 18px !important;
    }

    /* ── Simulateurs ── */
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    .sim-card {
        border-radius: 20px;
        padding: 24px 20px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* ── Contact ── */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .contact-h2 {
        font-family: 'Outfit', sans-serif !important;
        font-size: clamp(28px, 7vw, 40px) !important;
    }

    /* ── Section headings ── */
    .section-testi h2,
    .section-dark h2,
    .section-sims h2,
    .section-blog h2,
    .section-lab h2 {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
    }

    /* ── WhatsApp float — ajusté mobile ── */
    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        bottom: 20px !important;
        right: 16px !important;
    }
    .whatsapp-float i {
        font-size: 26px !important;
    }

    /* ── Hide legacy ── */
    .hide-mobile { display: none; }
    .menu-toggle { display: flex; }
}

/* ── FOOTER SITE ─────────────────────────────────────────── */
.site-footer {
    background: #181818;
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    padding-top: 64px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand */
.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-logo-text strong {
    font-weight: 800;
    color: var(--accent, #c4b5fd);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
    background: var(--accent, #c4b5fd);
    color: #1c182e;
}

/* Colonnes */
.footer-col h4.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span.footer-location {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.18s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li a i,
.footer-location i {
    font-size: 12px;
    color: var(--accent, #c4b5fd);
    flex-shrink: 0;
}

/* Barre du bas */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.7);
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}