/* ==========================================
   VERROUX PRO — BRANDING SYSTEM
   Dark Industrial × Neon Coral Energy
   ========================================== */

/* ---- Tokens ---- */
:root {
    /* Brand palette */
    --coral: #FF4D3B;
    --coral-light: #FF7A6B;
    --coral-dark: #D93826;
    --neon: #FFD166;
    --teal: #0EC4A4;
    --teal-glow: rgba(14, 196, 164, 0.3);

    /* Neutrals */
    --ink: #0A0C10;
    --ink-2: #10141C;
    --ink-3: #181D28;
    --ink-4: #222736;
    --surface: #F4F3EF;
    --surface-2: #EDECEA;
    --text: #1A1E2A;
    --text-muted: #6B7280;
    --border: rgba(26, 30, 42, 0.1);
    --border-dark: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --inner: 1200px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

em {
    font-style: normal;
    color: var(--coral);
}

strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
}

/* ---- Custom cursor glow ---- */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 59, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
}

/* ==========================================
   NAV
========================================== */
/* ==========================================
   NAV — COMPLET
========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(244, 243, 239, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
    background: rgba(244, 243, 239, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

/* ---- Brand / Logo ---- */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 77, 59, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.nav-brand:hover .brand-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 77, 59, 0.45);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}

.brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.brand-name em {
    color: var(--coral);
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- Nav right (liens + CTA) — desktop ---- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* ---- Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* ---- CTA Appel ---- */
.nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--coral);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-call:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 77, 59, 0.3);
}

/* ---- Burger (caché en desktop) ---- */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 110;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.25s, width 0.3s;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   RESPONSIVE NAV — <= 960px
========================================== */
@media (max-width: 960px) {
    .nav {
        padding: 14px 24px;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-burger {
        display: flex;
    }

    /* Masqué par défaut, prend toute la largeur */
    .nav-right {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding: 12px 0 8px;
        margin-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav-right.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin-bottom: 12px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        padding: 13px 4px;
        font-size: 1rem;
        color: var(--text);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-call {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        border-radius: var(--r-sm);
    }
}

/* ==========================================
   RESPONSIVE NAV — <= 640px
========================================== */
@media (max-width: 640px) {
    .nav {
        padding: 12px 16px;
    }

    .brand-tagline {
        display: none;
    }

    .brand-name {
        font-size: 1.05rem;
    }
}

/* ==========================================
   SHARED UTILITIES
========================================== */
.section-inner {
    max-width: var(--inner);
    margin: 0 auto;
    padding: 0 48px;
}

.section-header {
    margin-bottom: 64px;
    max-width: 680px;
}

.section-header.center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(255, 77, 59, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 59, 0.2);
}

.tag-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 20px;
}

.section-title.light {
    color: #fff;
}

.section-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.6);
}

/* CTAs */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--coral);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 77, 59, 0.35);
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 100px;
    background: transparent;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.cta-ghost:hover {
    border-color: var(--coral);
    background: rgba(255, 77, 59, 0.04);
    transform: translateY(-1px);
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 0.7s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   HERO
========================================== */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 0;
    background: var(--ink);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
}

/* Glowing blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 77, 59, 0.18);
    top: -100px;
    left: -200px;
    animation: blobDrift1 12s ease-in-out infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 209, 102, 0.1);
    top: 200px;
    right: -100px;
    animation: blobDrift2 15s ease-in-out infinite alternate;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: rgba(14, 196, 164, 0.08);
    bottom: 100px;
    left: 40%;
    animation: blobDrift1 9s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
    to {
        transform: translate(40px, 60px) scale(1.1);
    }
}

@keyframes blobDrift2 {
    to {
        transform: translate(-50px, 40px) scale(0.95);
    }
}

.hero-layout {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: var(--inner);
    margin: 0 auto;
    padding: 60px 48px 80px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
}

/* Pill */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Headline */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 7.5rem);
    line-height: 1.0;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

.line-top {
    color: #fff;
}

.line-accent {
    color: var(--coral);
    text-shadow: 0 0 60px rgba(255, 77, 59, 0.4);
    display: inline-block;
    animation: subtleFlicker 6s ease-in-out infinite;
}

@keyframes subtleFlicker {
    0%, 94%, 100% {
        opacity: 1;
    }

    95%, 97% {
        opacity: 0.85;
    }
}

.hero-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-body strong {
    color: rgba(255, 255, 255, 0.85);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
}

.hero-ctas .cta-ghost {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-ctas .cta-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Trust row */
.trust-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.trust-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* Right column — Card stack */
.hero-right {
    flex-shrink: 0;
    width: 380px;
}

.card-stack {
    position: relative;
    height: 280px;
}

.stack-card {
    position: absolute;
    border-radius: var(--r-lg);
    padding: 28px;
    border: 1px solid var(--border-dark);
}

.stack-main {
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stack-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-icon-lg {
    width: 56px;
    height: 56px;
    background: rgba(255, 77, 59, 0.15);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    border: 1px solid rgba(255, 77, 59, 0.25);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(14, 196, 164, 0.12);
    border: 1px solid rgba(14, 196, 164, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s ease-in-out infinite;
}

.card-label {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.card-sublabel {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.card-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 16px;
}

.card-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--coral), var(--neon));
    border-radius: 4px;
    animation: progressFill 3s ease-out 1s forwards;
}

@keyframes progressFill {
    to {
        width: 72%;
    }
}

/* Floating badges */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    animation: badgeFloat 0.5s var(--ease-out) both;
}

.float-badge.urgency {
    top: -16px;
    right: 24px;
    background: var(--neon);
    color: var(--ink);
    animation-delay: 0.8s;
    box-shadow: 0 8px 24px rgba(255, 209, 102, 0.3);
    transform-origin: right top;
    animation: badgeFloat 0.6s var(--ease-out) 0.8s both, badgeBob 5s ease-in-out 1.4s infinite;
}

.float-badge.devis {
    bottom: -12px;
    left: 24px;
    background: var(--teal);
    color: var(--ink);
    animation-delay: 1s;
    box-shadow: 0 8px 24px rgba(14, 196, 164, 0.3);
    animation: badgeFloat 0.6s var(--ease-out) 1s both, badgeBob 6s ease-in-out 1.6s infinite;
}

@keyframes badgeFloat {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes badgeBob {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Marquee */
.hero-marquee-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    padding: 0 32px;
    text-transform: uppercase;
}

.marquee-sep {
    color: var(--coral);
    font-size: 0.5rem;
    opacity: 0.5;
}

/* ==========================================
   EXPERTISES
========================================== */
.expertises {
    padding: var(--section-pad) 0;
    background: var(--surface);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.expertise-card {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
    cursor: default;
}

.expertise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 77, 59, 0.03), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 77, 59, 0.25);
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card.featured {
    background: var(--ink);
    border-color: transparent;
    color: #fff;
}

.expertise-card.featured .exp-num {
    color: rgba(255, 255, 255, 0.06);
}

.expertise-card.featured p {
    color: rgba(255, 255, 255, 0.5);
}

.expertise-card.featured h3 {
    color: #fff;
}

.expertise-card.featured .exp-link {
    color: var(--coral-light);
}

.expertise-card.featured::before {
    background: linear-gradient(135deg, rgba(255, 77, 59, 0.15), transparent);
    opacity: 1;
}

.exp-num {
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(26, 30, 42, 0.04);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

.exp-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 77, 59, 0.08);
    border: 1px solid rgba(255, 77, 59, 0.15);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 24px;
    transition: background 0.3s, transform 0.3s;
}

.expertise-card:hover .exp-icon {
    background: rgba(255, 77, 59, 0.14);
    transform: scale(1.05);
}

.expertise-card.featured .exp-icon {
    background: rgba(255, 77, 59, 0.15);
    border-color: rgba(255, 77, 59, 0.3);
}

.expertise-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.expertise-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.exp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--coral);
    transition: gap 0.2s;
}

.exp-link:hover {
    gap: 10px;
}

/* ==========================================
   PROCESSUS (dark)
========================================== */
.processus {
    position: relative;
    padding: var(--section-pad) 0;
    background: var(--ink-2);
    overflow: hidden;
}

.processus-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.processus-blob {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 59, 0.12) 0%, transparent 70%);
    right: -200px;
    bottom: -200px;
    pointer-events: none;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: opacity 0.3s;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:hover {
    opacity: 1;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-index {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    width: 52px;
    text-align: center;
    transition: color 0.3s;
}

.process-step:hover .step-index {
    color: var(--coral);
}

.step-line {
    flex: 1;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 8px;
}

.step-body {
    flex: 1;
    padding-top: 4px;
}

.step-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 77, 59, 0.1);
    border: 1px solid rgba(255, 77, 59, 0.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 16px;
}

.step-body h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

/* ==========================================
   TARIFS
========================================== */
.tarifs {
    padding: var(--section-pad) 0;
    background: var(--surface-2);
}

.tarifs-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Table */
.tarif-table-wrap {
    background: #fff;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.tarif-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1.5px solid var(--border);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.tarif-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(255, 77, 59, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 77, 59, 0.15);
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
}

.tarif-table thead tr {
    background: var(--surface);
}

.tarif-table th {
    padding: 14px 28px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1.5px solid var(--border);
}

.tarif-table td {
    padding: 18px 28px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.tarif-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text);
}

.tarif-table td:nth-child(2) {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tarif-table td:last-child {
    font-weight: 400;
}

.tarif-table td strong {
    color: var(--text);
}

.tarif-table tbody tr:last-child td {
    border-bottom: none;
}

.tarif-table tbody tr {
    transition: background 0.2s;
}

.tarif-table tbody tr:hover {
    background: rgba(255, 77, 59, 0.025);
}

.tarif-highlight td:last-child strong {
    color: var(--coral);
}

.td-icon {
    color: var(--coral);
    flex-shrink: 0;
}

.tarif-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 28px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--surface);
    border-top: 1.5px solid var(--border);
}

.tarif-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--coral);
}

/* FAQ */
.tarif-faq {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.tarif-faq h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
}

.faq-btn:hover {
    color: var(--coral);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
}

.faq-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--coral);
}

.faq-btn[aria-expanded="true"] {
    color: var(--coral);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-body.open {
    max-height: 200px;
}

.faq-body p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    padding-bottom: 16px;
}

/* ==========================================
   AVIS
========================================== */
.avis {
    padding: var(--section-pad) 0;
    background: var(--surface);
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.avis-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.avis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.avis-card.featured {
    background: var(--ink);
    border-color: transparent;
    grid-row: span 1;
    position: relative;
    overflow: hidden;
}

.avis-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 77, 59, 0.12), transparent);
    pointer-events: none;
}

.avis-card.featured blockquote p {
    color: rgba(255, 255, 255, 0.65);
}

.avis-card.featured .avis-name {
    color: #fff;
}

.avis-card.featured .avis-loc {
    color: rgba(255, 255, 255, 0.35);
}

.avis-card.featured .avis-tag {
    background: rgba(255, 77, 59, 0.15);
    color: var(--coral-light);
    border-color: rgba(255, 77, 59, 0.2);
}

.avis-card.featured .avis-avatar {
    background: rgba(255, 77, 59, 0.2);
    color: var(--coral-light);
}

.avis-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avis-stars {
    display: flex;
    gap: 3px;
    color: var(--neon);
}

.avis-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(255, 77, 59, 0.08);
    border: 1px solid rgba(255, 77, 59, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

blockquote p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
}

.avis-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.avis-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 77, 59, 0.1);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.avis-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
    display: block;
}

.avis-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* ==========================================
   CONTACT
========================================== */
.contact {
    position: relative;
    padding: var(--section-pad) 0;
    background: var(--surface-2);
    overflow: hidden;
}

.contact-blob {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 59, 0.06) 0%, transparent 65%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
}

.contact .section-inner {
    position: relative;
    z-index: 1;
}

/* Layout principal : formulaire + aside */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* ==========================================
   FORMULAIRE
========================================== */
.contact-form {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
}

/* Rangée 2 colonnes */
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Champ générique */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}

.field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

/* Wrapper input avec icône */
.input-wrap {
    position: relative;
}

.input-wrap .input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
}

/* Select wrapper */
.select-wrap {
    position: relative;
}

.select-wrap .input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
}

.select-chevron {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

/* Inputs, select, textarea */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

/* Textarea — pas d'icône gauche */
.contact-form textarea {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

/* Champs readonly (CP, ville) */
.contact-form input[readonly] {
    background: var(--surface-2);
    color: var(--text-muted);
    cursor: default;
    padding-left: 14px;
}

/* Focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 77, 59, 0.1);
    background: #fff;
}

/* Hint sous champ */
.field-hint {
    font-size: 0.775rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.field-hint.is-error {
    color: #e53e3e;
    font-weight: 500;
}

/* ==========================================
   AUTOCOMPLETE ADRESSE
========================================== */
.address-autocomplete-wrapper {
    position: relative;
}

/* Spinner via pseudo-élément quand is-loading */
.address-autocomplete-wrapper.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--coral);
    border-radius: 50%;
    animation: contact-spin 0.7s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes contact-spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Liste de suggestions */
.address-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 260px;
    overflow-y: auto;
}

.address-suggestions.is-visible {
    display: block;
}

.address-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.12s;
}

.address-suggestion-item:hover,
.address-suggestion-item.is-highlighted {
    background: var(--surface-2);
}

.sug-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.sug-main {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sug-extra {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sug-dept {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral);
    background: rgba(255, 77, 59, 0.08);
    border: 1px solid rgba(255, 77, 59, 0.18);
    border-radius: 100px;
    padding: 2px 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ==========================================
   CHECKBOX RGPD
========================================== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    margin-top: 24px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, border-color 0.18s;
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom {
    background: var(--coral);
    border-color: var(--coral);
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-custom::after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
}

/* ==========================================
   BOUTONS FORMULAIRE
========================================== */
.form-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 24px;
}

.form-submit {
    flex: 1;
    justify-content: center;
}

/* Feedback message */
.form-feedback {
    margin-top: 14px;
    font-size: 0.875rem;
    min-height: 18px;
    line-height: 1.4;
}

.form-feedback.is-success {
    color: var(--teal);
}

.form-feedback.is-error {
    color: #e53e3e;
}

/* ==========================================
   ASIDE CONTACT
========================================== */
.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Card téléphone urgence --- */
.aside-card {
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aside-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 77, 59, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.aside-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 77, 59, 0.12);
    border: 1px solid rgba(255, 77, 59, 0.22);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.aside-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.aside-phone {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: color 0.2s;
    text-decoration: none;
}

.aside-phone:hover {
    color: var(--coral);
}

.aside-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* --- Carte OSM --- */
.aside-map-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.aside-map-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.aside-map-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 77, 59, 0.15);
}

.aside-map-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    flex: 1;
}

.aside-map-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--coral);
    background: rgba(255, 77, 59, 0.08);
    border: 1px solid rgba(255, 77, 59, 0.18);
    border-radius: 100px;
    padding: 2px 8px;
    white-space: nowrap;
}

.aside-map {
    width: 100%;
    height: 190px;
    overflow: hidden;
    display: block;
    background: var(--surface-2);
}

.aside-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.aside-map-caption {
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 8px 16px;
    margin: 0;
    border-top: 1px solid var(--border);
    line-height: 1.4;
}

/* --- Checklist garanties --- */
.aside-checklist {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 20px;
}

.aside-checklist h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.aside-checklist ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aside-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.4;
}

.aside-checklist li svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* --- Tags zones desservies --- */
.aside-zones {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 20px;
}

.zones-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.zones-title svg {
    color: var(--coral);
    flex-shrink: 0;
}

.zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.zones-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 100px;
    line-height: 1;
}

/* ==========================================
   FAQ
========================================== */
.faq {
    position: relative;
    padding: var(--section-pad) 0;
    background: var(--ink);
    overflow: hidden;
}

.faq-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.faq-blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 77, 59, 0.1);
    top: -150px;
    left: -150px;
}

.faq-blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(14, 196, 164, 0.06);
    bottom: -100px;
    right: -100px;
}

/* Layout 2 colonnes */
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

/* ---- Colonne gauche ---- */
.faq-left-inner {
    position: sticky;
    top: 100px;
}

.faq-left .section-title {
    color: #fff;
    margin-top: 0;
}

.faq-left .section-sub {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
}

.faq-left .section-sub strong {
    color: rgba(255, 255, 255, 0.8);
}

.faq-stat-block {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    margin-bottom: 28px;
}

.faq-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--coral);
    line-height: 1;
    letter-spacing: 0.02em;
}

.faq-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faq-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.faq-cta {
    width: 100%;
    justify-content: center;
}

/* ---- Colonne droite : liste FAQ ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Question button */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.faq-q-num {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    width: 28px;
    transition: color 0.3s;
}

.faq-q-text {
    flex: 1;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    transition: color 0.3s;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s var(--ease-out);
}

/* Hover state */
.faq-q:hover .faq-q-text {
    color: #fff;
}

.faq-q:hover .faq-q-num {
    color: var(--coral);
}

.faq-q:hover .faq-q-icon {
    background: rgba(255, 77, 59, 0.1);
    border-color: rgba(255, 77, 59, 0.3);
    color: var(--coral);
}

/* Open state */
.faq-item.open .faq-q-text {
    color: #fff;
}

.faq-item.open .faq-q-num {
    color: var(--coral);
}

.faq-item.open .faq-q-icon {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.open {
    background: rgba(255, 255, 255, 0.02);
}

/* Réponse — animation hauteur */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.faq-a.open {
    max-height: 400px;
}

.faq-a-inner {
    padding: 0 0 24px 44px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease-out) 0.05s, transform 0.35s var(--ease-out) 0.05s;
}

.faq-a.open .faq-a-inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-a-inner p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.faq-a-inner p strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.faq-a-inner p a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.faq-a-inner p a:hover {
    color: var(--coral-light);
}

/* ==========================================
   FAQ RESPONSIVE
========================================== */
@media (max-width: 960px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-left-inner {
        position: static;
    }

    .faq-cta {
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .faq-q {
        padding: 20px 0;
        gap: 12px;
    }

    .faq-q-text {
        font-size: 0.9rem;
    }

    .faq-q-num {
        display: none;
    }

    .faq-a-inner {
        padding-left: 0;
    }

    .faq-stat-block {
        padding: 16px;
        gap: 16px;
    }
}

/* ==========================================
   CTA BAND
========================================== */
.cta-band {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

/* Ligne déco diagonale en fond */
.cta-band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: 10%;
    width: 2px;
    height: 260px;
    background: linear-gradient(to bottom, transparent, rgba(255, 77, 59, 0.15), transparent);
    transform: rotate(20deg);
    pointer-events: none;
}

.cta-band::after {
    content: '';
    position: absolute;
    top: -40px;
    right: calc(10% + 28px);
    width: 2px;
    height: 220px;
    background: linear-gradient(to bottom, transparent, rgba(255, 77, 59, 0.08), transparent);
    transform: rotate(20deg);
    pointer-events: none;
}

.cta-band-inner {
    max-width: var(--inner);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ---- Gauche ---- */
.cta-band-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--text);
}

.cta-band-title em {
    color: var(--coral);
}

/* ---- Droite ---- */
.cta-band-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Bouton principal */
.cta-band-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--coral);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(255, 77, 59, 0.3);
}

.cta-band-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 77, 59, 0.4);
}

/* Halo pulsant autour du bouton */
.cta-band-btn-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 100px;
    border: 2px solid rgba(255, 77, 59, 0.3);
    animation: bandPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes bandPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.06);
        opacity: 0;
    }

    100% {
        transform: scale(1.06);
        opacity: 0;
    }
}

/* Lien secondaire */
.cta-band-ghost {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.cta-band-ghost:hover {
    color: var(--coral);
}

/* ==========================================
   CTA BAND RESPONSIVE
========================================== */
@media (max-width: 768px) {
    .cta-band-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 24px;
        gap: 32px;
    }

    .cta-band-btn {
        font-size: 1.05rem;
        padding: 14px 28px;
    }
}

@media (max-width: 640px) {
    .cta-band {
        padding: 52px 0;
    }

    .cta-band-inner {
        padding: 0 16px;
    }

    .cta-band-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--ink);
    padding: 80px 0 0;
}

.footer-inner {
    max-width: var(--inner);
    margin: 0 auto;
    padding: 0 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-brand {
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-tel {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--coral);
    transition: color 0.2s;
}

.footer-tel:hover {
    color: var(--coral-light);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--coral);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom nav {
    display: flex;
    gap: 24px;
}

.footer-bottom nav a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}

.footer-bottom nav a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   FLOATING ACTIONS
========================================== */
.float-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 90;
}

.float-call,
.float-top {
    width: 54px;
    height: 54px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(255, 77, 59, 0.4);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.float-call {
    animation: floatCallPulse 3s ease-in-out infinite;
}

.float-call:hover,
.float-top:hover {
    background: var(--coral-dark);
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 77, 59, 0.55);
}

@keyframes floatCallPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 77, 59, 0.4);
    }

    50% {
        box-shadow: 0 8px 48px rgba(255, 77, 59, 0.65);
    }
}

.float-top {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.float-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 640px) {
    .float-actions {
        bottom: 20px;
        right: 16px;
    }

    .float-call,
    .float-top {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================
   LEGAL PAGES — CSS COMMUN
   mentions-legales / cgu / politique-confidentialite
========================================== */

.legal-main {
    padding-top: 80px;
    /* hauteur nav fixe */
    background: var(--surface);
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 48px 100px;
}

/* ---- Fil d'Ariane ---- */
.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-breadcrumb a {
    color: var(--coral);
    font-weight: 500;
    transition: color 0.2s;
}

.legal-breadcrumb a:hover {
    color: var(--coral-dark);
}

.legal-breadcrumb span[aria-hidden] {
    color: var(--border);
    font-size: 1rem;
}

/* ---- Hero ---- */
.legal-hero {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1.5px solid var(--border);
}

.legal-hero .tag {
    margin-bottom: 16px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-title em {
    color: var(--coral);
}

.legal-update {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 680px;
}

.legal-intro strong {
    color: var(--text);
}

/* ---- Grid layout ---- */
.legal-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: start;
}

/* ---- Sidebar ---- */
.legal-sidebar-inner {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.legal-sidebar-title {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin-bottom: 24px;
}

.legal-nav li {
    border-bottom: 1px solid var(--border);
}

.legal-nav li:last-child {
    border-bottom: none;
}

.legal-nav a {
    display: block;
    padding: 10px 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s, padding-left 0.2s;
    line-height: 1.4;
}

.legal-nav a:hover {
    color: var(--coral);
    padding-left: 8px;
}

.legal-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: var(--coral);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    transition: background 0.2s, transform 0.2s;
}

.legal-sidebar-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

/* ---- Contenu principal ---- */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-section {
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--coral);
    letter-spacing: 0.04em;
    line-height: 1;
    flex-shrink: 0;
}

.legal-section p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section p strong {
    color: var(--text);
    font-weight: 600;
}

.legal-section a {
    color: var(--coral);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: var(--coral-dark);
}

/* Liste légale */
.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
    padding-left: 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

.legal-list li strong {
    color: var(--text);
}

.legal-list li a {
    color: var(--coral);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---- Bouton retour ---- */
.legal-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 13px 24px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.legal-btn-home:hover {
    border-color: var(--coral);
    background: rgba(255, 77, 59, 0.04);
    transform: translateX(-3px);
}

.legal-btn-home svg {
    flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE — LEGAL
========================================== */
@media (max-width: 900px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-sidebar-inner {
        position: static;
    }

    .legal-wrapper {
        padding: 40px 24px 80px;
    }
}

@media (max-width: 640px) {
    .legal-wrapper {
        padding: 32px 16px 60px;
    }

    .legal-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .legal-hero {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .legal-section {
        padding: 28px 0;
    }

    .legal-section h2 {
        font-size: 1rem;
        gap: 10px;
    }

    .legal-num {
        font-size: 1.2rem;
    }
}

/* ==========================================
   RESPONSIVE GLOBAL
   320px → 480px → 640px → 768px → 960px → 1024px
========================================== */

/* ==========================================
   <= 1024px — TABLET LARGE
========================================== */
@media (max-width: 1024px) {
    :root {
        --section-pad: 100px;
    }

    .section-inner {
        padding: 0 36px;
    }

    /* Hero */
    .hero-layout {
        gap: 48px;
        padding: 48px 36px 72px;
    }

    .hero-right {
        width: 320px;
    }

    .hero-headline {
        font-size: clamp(3.5rem, 6vw, 6rem);
    }

    /* Expertises */
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tarifs */
    .tarifs-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }

    /* Footer */
    .footer-inner {
        padding: 0 36px;
    }

    .footer-top {
        gap: 48px;
    }
}

/* ==========================================
   <= 960px — TABLET
========================================== */
@media (max-width: 960px) {
    :root {
        --section-pad: 80px;
    }

    .section-inner {
        padding: 0 28px;
    }

    /* Hero */
    .hero-layout {
        flex-direction: column;
        gap: 40px;
        padding: 48px 28px 64px;
        align-items: flex-start;
    }

    .hero-left {
        width: 100%;
    }

    .hero-right {
        width: 100%;
        max-width: 480px;
    }

    .hero-headline {
        font-size: clamp(3.2rem, 7vw, 5.5rem);
    }

    .hero-body {
        max-width: 100%;
    }

    /* Card stack */
    .card-stack {
        height: 240px;
    }

    /* Trust */
    .trust-row {
        gap: 20px;
    }

    /* Expertises */
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Processus */
    .process-timeline {
        max-width: 100%;
    }

    /* Tarifs */
    .tarifs-layout {
        grid-template-columns: 1fr;
    }

    .tarif-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tarif-table {
        min-width: 560px;
    }

    /* Avis */
    .avis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .aside-card {
        grid-column: 1 / 3;
    }

    .aside-map-card {
        grid-column: 1 / 3;
    }

    .aside-checklist {
        grid-column: 1 / 2;
    }

    .aside-zones {
        grid-column: 2 / 3;
    }

    /* FAQ */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left-inner {
        position: static;
    }

    .faq-cta {
        max-width: 360px;
    }

    .faq-stat-block {
        max-width: 360px;
    }

    /* CTA Band */
    .cta-band-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 28px;
        gap: 28px;
    }

    .cta-band-right {
        align-items: center;
        width: 100%;
    }

    /* Footer */
    .footer-inner {
        padding: 0 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ==========================================
   <= 768px — MOBILE LARGE
========================================== */
@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    .section-inner {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Hero */
    .hero-layout {
        padding: 40px 20px 56px;
        gap: 36px;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 10vw, 4.5rem);
    }

    .hero-pill {
        font-size: 0.75rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-ctas a {
        justify-content: center;
    }

    /* Marquee */
    .marquee-item {
        padding: 0 20px;
        font-size: 0.8rem;
    }

    /* Trust */
    .trust-row {
        gap: 16px;
    }

    .trust-num {
        font-size: 1.5rem;
    }

    /* Card stack */
    .card-stack {
        height: 210px;
    }

    .stack-main {
        padding: 20px;
    }

    .card-icon-lg {
        width: 44px;
        height: 44px;
    }

    .float-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    /* Expertises */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expertise-card {
        padding: 28px 22px;
    }

    /* Processus */
    .process-step {
        gap: 20px;
        padding: 28px 0;
    }

    .step-index {
        font-size: 2rem;
        width: 40px;
    }

    .step-body h3 {
        font-size: 1.05rem;
    }

    /* Tarifs */
    .tarif-table th,
    .tarif-table td {
        padding: 14px 16px;
    }

    /* Avis */
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .avis-card {
        padding: 24px;
    }

    /* Contact */
    .contact-form {
        padding: 28px 20px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .form-actions a,
    .form-actions button {
        width: 100%;
        justify-content: center;
    }

    .contact-aside {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .aside-map {
        height: 175px;
    }

    /* FAQ */
    .faq-q {
        padding: 18px 0;
        gap: 12px;
    }

    .faq-q-text {
        font-size: 0.95rem;
    }

    .faq-a-inner {
        padding-left: 0;
    }

    .faq-stat-block {
        flex-wrap: wrap;
    }

    /* CTA Band */
    .cta-band {
        padding: 52px 0;
    }

    .cta-band-inner {
        padding: 0 20px;
        gap: 24px;
    }

    .cta-band-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .cta-band-ghost {
        font-size: 0.82rem;
    }

    /* Footer */
    .footer {
        padding: 56px 0 0;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Float actions */
    .float-actions {
        bottom: 20px;
        right: 16px;
    }

    .float-call {
        width: 48px;
        height: 48px;
    }

    .float-top {
        width: 38px;
        height: 38px;
    }
}

/* ==========================================
   <= 480px — MOBILE
========================================== */
@media (max-width: 480px) {
    :root {
        --section-pad: 52px;
    }

    /* Hero */
    .hero-layout {
        padding: 32px 16px 48px;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .hero-body {
        font-size: 1rem;
    }

    .hero-pill {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    /* Trust */
    .trust-row {
        gap: 12px;
    }

    .trust-num {
        font-size: 1.3rem;
    }

    .trust-sep {
        height: 28px;
    }

    .trust-label {
        font-size: 0.68rem;
    }

    /* Card stack */
    .card-stack {
        height: 190px;
    }

    .card-label {
        font-size: 0.95rem;
    }

    .float-badge.urgency {
        top: -12px;
        right: 12px;
    }

    .float-badge.devis {
        bottom: -8px;
        left: 12px;
    }

    /* Section */
    .section-inner {
        padding: 0 16px;
    }

    /* Expertise */
    .expertise-card {
        padding: 24px 18px;
    }

    .exp-icon {
        width: 44px;
        height: 44px;
    }

    /* Processus */
    .step-left {
        display: none;
    }

    .process-step {
        padding: 22px 0;
    }

    .step-body {
        padding-top: 0;
    }

    /* Tarifs */
    .tarif-table th,
    .tarif-table td {
        padding: 12px;
        font-size: 0.82rem;
    }

    .td-icon {
        display: none;
    }

    /* Contact */
    .contact-form {
        padding: 20px 16px;
    }

    .aside-phone {
        font-size: 1.5rem;
    }

    .aside-map {
        height: 155px;
    }

    .address-suggestions {
        max-height: 200px;
    }

    /* FAQ */
    .faq-q {
        padding: 16px 0;
    }

    .faq-q-num {
        display: none;
    }

    .faq-q-text {
        font-size: 0.875rem;
    }

    .faq-q-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .faq-stat-num {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-col a {
        font-size: 0.82rem;
    }

    .footer-tel {
        font-size: 1.3rem;
    }
}

/* ==========================================
   <= 360px — MOBILE XS
========================================== */
@media (max-width: 360px) {
    .hero-headline {
        font-size: clamp(2rem, 13vw, 2.8rem);
    }

    .hero-ctas .cta-primary,
    .hero-ctas .cta-ghost {
        padding: 12px 18px;
        font-size: 0.875rem;
    }

    .cta-primary {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .trust-row {
        gap: 8px;
    }

    .expertise-card {
        padding: 20px 16px;
    }

    .contact-form {
        padding: 18px 14px;
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }

    .brand-name {
        font-size: 1rem;
    }

    .aside-phone {
        font-size: 1.3rem;
    }
}

/* ==========================================
   IOS SAFARI FIXES
========================================== */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }

    .tarif-table-wrap {
        -webkit-overflow-scrolling: touch;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        -webkit-appearance: none;
        border-radius: var(--r-sm);
    }

    .legal-sidebar-inner {
        position: -webkit-sticky;
    }

    .faq-left-inner {
        position: -webkit-sticky;
    }

    .hero-ctas {
        gap: 12px;
    }

    .trust-row {
        gap: 16px;
    }
}

/* ==========================================
   TOUCH DEVICES
========================================== */
@media (hover: none) and (pointer: coarse) {

    .expertise-card:hover,
    .avis-card:hover,
    .cta-primary:hover,
    .cta-ghost:hover,
    .nav-call:hover {
        transform: none;
        box-shadow: none;
    }

    .faq-q {
        padding: 20px 0;
        min-height: 56px;
    }

    .float-call {
        width: 56px;
        height: 56px;
    }

    .cursor-glow {
        display: none;
    }
}

/* ==========================================
   PRINT — désactiver les décos
========================================== */
@media print {

    .nav, .float-actions, .cursor-glow,
    .blob, .hero-noise, .faq-noise,
    .processus-noise, .contact-blob {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 20px;
    }

    body {
        background: #fff;
        color: #000;
    }
}

.footer-credit {
    font-size: 0.78rem;
    color: #888;
    margin: 0;
}

.footer-credit a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}