/* ================================================================
   SERRURIER VILLEJUIF — BRANDING CSS (FUN & PLAYFUL)
   Palette: Jaune #F5DF4D · Corail #FF6B5B · Turquoise #2EC4B6 · Marine #1A2332
   Style: Éditorial Industriel Premium — Fun & Coloré
================================================================ */

/* ----------------------------------------------------------------
   VARIABLES & RESET
---------------------------------------------------------------- */
:root {
    /* ── Couleurs principales ── */
    --yellow: #F5DF4D;
    --yellow-dark: #D4C13A;
    --yellow-light: #FFF8C0;

    --coral: #FF6B5B;
    --coral-dark: #E05040;
    --coral-light: #FFE8E5;

    --teal: #2EC4B6;
    --teal-dark: #1FA99D;
    --teal-light: #D7F5F3;

    /* ── Neutres clairs ── */
    --black: #1A2332;
    --gray: #6B7A8D;
    --gray-light: #94A3B8;
    --gray-lighter: #E2E8F0;
    --white: #FAFBFD;
    --off-white: #F0F4F9;

    /* ── Sections alternées ── */
    --section-a: #FFF8F7;
    /* teinte corail très pâle */
    --section-b: #F0FDFB;
    /* teinte teal très pâle   */
    --section-c: #FFFEF0;
    /* teinte jaune très pâle  */

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Familjen Grotesk', sans-serif;
    --font-mono: 'DM Mono', monospace;

    --nav-h: 72px;
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::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(--white);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img, svg {
    display: block;
}

button {
    cursor: none;
    font-family: inherit;
    border: none;
    background: none;
}

/* ----------------------------------------------------------------
   CURSOR CUSTOM
---------------------------------------------------------------- */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s linear, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

body.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--yellow);
    background: rgba(245, 223, 77, 0.12);
}

/* ----------------------------------------------------------------
   LOADER  ── fond jaune, barre corail
---------------------------------------------------------------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--yellow);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(26, 35, 50, 0.12);
    position: relative;
    overflow: hidden;
    border-radius: 99px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--teal));
    animation: loaderProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderProgress {
    to {
        left: 0;
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(26, 35, 50, 0.55);
    text-transform: uppercase;
    display: flex;
    gap: 8px;
}

.loader-accent {
    color: var(--black);
    font-weight: 800;
}

/* ----------------------------------------------------------------
   NAV  ── fond blanc, accents colorés
---------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 1000;
    background: rgba(250, 251, 253, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26, 35, 50, 0.07);
    transition: background var(--transition);
}

.nav.scrolled {
    background: rgba(250, 251, 253, 0.99);
    box-shadow: 0 2px 20px rgba(26, 35, 50, 0.07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mark {
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-main {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav-logo-main strong {
    font-weight: 800;
    color: var(--coral);
}

.nav-logo-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--gray-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), var(--teal));
    transition: width var(--transition);
    border-radius: 99px;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--coral);
    color: var(--white);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 91, 0.35);
}

/* ----------------------------------------------------------------
   HERO  ── gauche marine, droite jaune (inchangé)
---------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-left-panel {
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 80px 64px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 1px;
    background: var(--yellow);
    opacity: 0.4;
}

.hero-left-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 1.6s ease forwards;
}

.hero-dot-active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.4);
    animation: pulseTeal 2s infinite;
}

@keyframes pulseTeal {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.45);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(46, 196, 182, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.hero-title-line {
    font-family: var(--font-display);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title-light {
    color: var(--white);
    animation: fadeUp 0.7s 1.75s ease forwards;
}

.hero-title-yellow {
    color: var(--yellow);
    animation: fadeUp 0.7s 1.9s ease forwards;
    font-style: italic;
}

.hero-title-light:last-child {
    animation-delay: 2.05s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 2.2s ease forwards;
}

.hero-desc strong {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 2.35s ease forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 2.5s ease forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Hero Right Panel */
.hero-right-panel {
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}

.hero-right-panel::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.05);
}

.hero-right-panel::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(26, 35, 50, 0.04);
}

.hero-right-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
}

.hero-bignum {
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 900;
    color: rgba(26, 35, 50, 0.06);
    line-height: 0.8;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero-card {
    background: var(--black);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    animation: cardReveal 0.8s 2.0s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.4);
    animation: pulseTeal 2s infinite;
}

.hero-card-phone {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-card-row svg {
    color: var(--teal);
    flex-shrink: 0;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.6s 2.3s ease forwards;
}

.hero-tag {
    background: rgba(26, 35, 50, 0.1);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 2px;
}

.hero-diagonal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 80px;
    background: linear-gradient(to right, var(--black), var(--yellow));
    transform: translateX(-50%) skewX(-3deg);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 193, 58, 0.4);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}

.btn-ghost-light:hover {
    color: var(--teal);
    border-color: var(--teal);
}

.btn-primary-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary-dark:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 196, 182, 0.35);
}

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(26, 35, 50, 0.3);
    padding-bottom: 2px;
    transition: border-color var(--transition), color var(--transition);
}

.btn-ghost-dark:hover {
    color: var(--coral);
    border-color: var(--coral);
}

/* ----------------------------------------------------------------
   TAGS
---------------------------------------------------------------- */
.tag-outline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid rgba(26, 35, 50, 0.22);
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.tag-outline-dark {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid rgba(26, 35, 50, 0.25);
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.tag-light {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-light);
    border: 1px solid rgba(255, 107, 91, 0.25);
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* ----------------------------------------------------------------
   SECTION TITLES
---------------------------------------------------------------- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--black);
}

.section-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--coral);
}

.section-title.light {
    color: var(--black);
}

.section-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 480px;
}

/* ----------------------------------------------------------------
   TICKER / MARQUEE
---------------------------------------------------------------- */
.ticker-wrap {
    background: var(--coral);
    overflow: hidden;
    padding: 16px 0;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 24px;
    flex-shrink: 0;
}

.ticker-sep {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    align-self: center;
}

/* ----------------------------------------------------------------
   SERVICES  ── fond teinte corail pâle
---------------------------------------------------------------- */
.services {
    background: var(--section-a);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.section-label-vertical {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26, 35, 50, 0.08);
    transform-origin: left center;
    white-space: nowrap;
    pointer-events: none;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    margin-bottom: 72px;
}

.services-header .section-body {
    margin-top: 0;
    max-width: 520px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: default;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    background: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 35, 50, 0.14);
    border-color: var(--black);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-card-num,
.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card:hover .service-icon svg {
    stroke: var(--yellow);
}

.service-card:hover .service-icon {
    background: rgba(245, 223, 77, 0.12);
}

/* Featured : fond teal */
.service-card--featured {
    background: var(--teal);
    border-color: var(--teal);
}

.service-card--featured .service-card-num {
    color: rgba(255, 255, 255, 0.06);
}

.service-card--featured h3 {
    color: var(--white);
}

.service-card--featured p {
    color: rgba(255, 255, 255, 0.75);
}

.service-card--featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card--featured .service-icon svg {
    stroke: var(--white);
}

.service-card--featured::before {
    transform: scaleX(1);
    background: var(--yellow);
}

.service-card--featured .service-card-footer {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card-num {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: rgba(26, 35, 50, 0.04);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    pointer-events: none;
    user-select: none;
    transition: color var(--transition);
}

.service-card:hover .service-card-num {
    color: rgba(255, 255, 255, 0.04);
}

.service-card-body {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 107, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.service-icon svg {
    stroke: var(--coral);
    transition: stroke var(--transition);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: color var(--transition);
    color: var(--black);
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 28px;
    transition: color var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.65);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.service-card:hover .service-card-footer {
    border-color: rgba(255, 255, 255, 0.08);
}

.service-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
}

.service-card--featured .service-price {
    color: var(--yellow);
}

.service-card-footer svg {
    stroke: var(--gray-light);
    transition: stroke var(--transition), transform var(--transition);
}

.service-card:hover .service-card-footer svg {
    stroke: var(--yellow);
    transform: translate(2px, -2px);
}

/* ----------------------------------------------------------------
   METHODE  ── fond teinte teal pâle
---------------------------------------------------------------- */
.methode {
    background: var(--section-b);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.methode::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--yellow), var(--coral));
}

.methode-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.methode-header {
    text-align: center;
    margin-bottom: 80px;
}

.methode-header .section-body {
    color: var(--gray);
    margin: 16px auto 0;
    text-align: center;
}

.steps-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 64px;
}

.step-h {
    flex: 1;
    padding: 32px;
    position: relative;
    transition: background var(--transition), transform var(--transition);
    border: 1px solid rgba(26, 35, 50, 0.07);
    background: var(--white);
    border-radius: var(--radius);
}

.step-h:hover {
    background: var(--teal-light);
    border-color: var(--teal);
    transform: translateY(-3px);
}

.step-h--last {
    background: var(--teal-light);
    border-color: var(--teal);
}

.step-h-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    color: var(--teal);
    flex-shrink: 0;
    opacity: 0.5;
}

.step-h-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(26, 35, 50, 0.07);
    line-height: 1;
    margin-bottom: 20px;
}

.step-h-icon {
    width: 44px;
    height: 44px;
    background: rgba(46, 196, 182, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.step-h-icon svg {
    stroke: var(--teal);
}

.step-h h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.step-h p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray);
}

.methode-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.methode-reassurance {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.methode-reassurance svg {
    stroke: var(--teal);
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   TARIFS  ── fond blanc pur avec accents corail
---------------------------------------------------------------- */
.tarifs {
    background: var(--white);
    padding: 120px 80px;
}

.tarifs-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.tarifs-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
}

.tarifs-badge-wrap {
    flex-shrink: 0;
}

.tarifs-badge {
    background: var(--coral);
    color: var(--white);
    padding: 24px 32px;
    text-align: center;
    min-width: 160px;
    border-radius: var(--radius);
}

.tarifs-badge-title {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.tarifs-badge-value {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.tarifs-badge-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tarifs-rows {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 24px;
}

.tarif-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 32px;
    background: var(--off-white);
    transition: background var(--transition), transform var(--transition);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
}

.tarif-row:hover {
    background: var(--coral-light);
    transform: translateX(4px);
}

/* Highlight : fond teal */
.tarif-row--highlight {
    background: var(--teal);
    border-color: var(--teal);
}

.tarif-row--highlight:hover {
    background: var(--teal-dark);
    transform: translateX(4px);
}

.tarif-row--highlight h3, .tarif-row--highlight p {
    color: var(--white);
}

.tarif-row--highlight .tarif-row-price {
    color: var(--yellow);
}

.tarif-row--highlight .tarif-row-icon {
    background: rgba(255, 255, 255, 0.15);
}

.tarif-row--highlight .tarif-row-icon svg {
    stroke: var(--white);
}

.tarif-row-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.tarif-row-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.tarif-row-icon svg {
    stroke: var(--coral);
}

.tarif-row-left h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    color: var(--black);
}

.tarif-row-left p {
    font-size: 13px;
    color: var(--gray);
}

.tarif-row-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--coral);
    white-space: nowrap;
    flex-shrink: 0;
}

.tarif-row-price strong {
    font-size: 26px;
}

.tarifs-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    font-family: var(--font-mono);
    padding: 16px;
    border: 1px solid var(--gray-lighter);
    background: var(--off-white);
    border-radius: var(--radius);
}

.tarifs-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    stroke: var(--teal);
}

/* ----------------------------------------------------------------
   AVIS  ── fond teinte jaune pâle
---------------------------------------------------------------- */
.avis {
    background: var(--section-c);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.avis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--coral), var(--teal));
}

.avis-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.avis-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
}

.avis-header .section-title {
    color: var(--black);
    margin-bottom: 0;
}

.avis-global {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.avis-global-score {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--coral);
    line-height: 1;
}

.avis-global-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stars-row {
    display: flex;
    gap: 3px;
}

.avis-global-detail span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.06em;
}

.avis-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 3px;
}

.avis-card {
    background: var(--white);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background var(--transition), transform var(--transition);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
}

.avis-card:hover {
    background: var(--off-white);
    transform: translateY(-3px);
}

/* Featured : fond corail */
.avis-card--featured {
    background: var(--coral);
    border-color: var(--coral);
    position: relative;
}

.avis-card--featured:hover {
    background: var(--coral-dark);
}

.avis-quote-mark {
    font-family: var(--font-display);
    font-size: 100px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 0.7;
    height: 50px;
    overflow: hidden;
    font-style: italic;
    font-weight: 900;
}

.avis-card:not(.avis-card--featured) .avis-quote-mark {
    color: rgba(26, 35, 50, 0.07);
}

.avis-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avis-service-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    padding: 5px 10px;
    border-radius: 2px;
}

.avis-service-tag--dark {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.avis-card blockquote p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    font-style: italic;
    flex: 1;
}

.avis-card--featured blockquote p {
    color: var(--white);
    font-size: 16px;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.avis-author--dark {
    border-color: rgba(255, 255, 255, 0.2);
}

.avis-avatar {
    width: 38px;
    height: 38px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    border-radius: 2px;
}

.avis-avatar--dark {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.avis-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.avis-author--dark strong {
    color: var(--white);
}

.avis-author span {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.06em;
}

.avis-author--dark span {
    color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------------
   CTA BAND  ── fond teal vif
---------------------------------------------------------------- */
.cta-band {
    background: var(--teal);
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.cta-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.cta-band-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: block;
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
}

.cta-band-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--yellow);
}

.cta-band-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.cta-band-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--black);
    color: var(--yellow);
    padding: 20px 40px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.03em;
    position: relative;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-band-btn:hover {
    background: #253245;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 35, 50, 0.3);
}

.cta-band-pulse {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulseYellow 2s infinite;
}

@keyframes pulseYellow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 223, 77, 0.5);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(245, 223, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 223, 77, 0);
    }
}

.cta-band-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-align: right;
}

.cta-band-geo {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    z-index: 0;
}

/* ----------------------------------------------------------------
   FAQ  ── fond off-white neutre
---------------------------------------------------------------- */
.faq {
    background: var(--off-white);
    padding: 120px 80px;
}

.faq-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.faq-left .section-title {
    margin-bottom: 16px;
}

.faq-left .section-body {
    margin-bottom: 36px;
}

.faq-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
}

.faq-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-stat-n {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.faq-stat-l {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.faq-cta {
    width: 100%;
    justify-content: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-item {
    background: var(--white);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    text-align: left;
    transition: background var(--transition);
}

.faq-btn:hover {
    background: var(--teal-light);
}

.faq-btn[aria-expanded="true"] {
    background: var(--black);
    color: var(--white);
}

.faq-btn[aria-expanded="true"] .faq-idx {
    color: var(--teal);
}

.faq-btn[aria-expanded="true"] .faq-ico {
    background: var(--teal);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-idx {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 24px;
    transition: color var(--transition);
}

.faq-btn>span:nth-child(2) {
    flex: 1;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--black);
}

.faq-btn[aria-expanded="true"]>span:nth-child(2) {
    color: var(--white);
}

.faq-ico {
    width: 32px;
    height: 32px;
    background: rgba(26, 35, 50, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body.open {
    max-height: 300px;
}

.faq-body p {
    padding: 0 28px 24px calc(40px + 28px);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.faq-body p a {
    color: var(--teal-dark);
    font-weight: 600;
    border-bottom: 1px solid;
}

/* ----------------------------------------------------------------
   CONTACT  ── fond blanc, bordure corail
---------------------------------------------------------------- */
.contact {
    background: var(--white);
    padding: 120px 80px;
    border-top: 4px solid var(--coral);
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.contact-form-wrap .section-title {
    margin-bottom: 12px;
}

.contact-sub {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    stroke: var(--gray-light);
    pointer-events: none;
}

.field input, .field textarea {
    width: 100%;
    padding: 13px 16px 13px 40px;
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    border-radius: var(--radius);
}

.field textarea {
    resize: vertical;
    padding: 13px 16px;
}

.field input:focus, .field textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.1);
}

.field input::placeholder, .field textarea::placeholder {
    color: var(--gray-light);
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
    padding: 13px 40px 13px 40px;
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
    border-radius: var(--radius);
}

.select-wrap select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.1);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    stroke: var(--gray);
    pointer-events: none;
}

.field-hint {
    font-size: 12px;
    color: var(--gray-light);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
}

.check-label input {
    display: none;
}

.check-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gray-lighter);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
    border-radius: 2px;
}

.check-label input:checked+.check-box {
    background: var(--teal);
    border-color: var(--teal);
}

.check-label input:checked+.check-box::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg) translateY(-1px);
}

.form-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.form-btn {
    flex: 1;
    justify-content: center;
}

.form-msg {
    font-size: 14px;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    min-height: 20px;
}

.form-msg.success {
    color: var(--teal-dark);
}

.form-msg.error {
    color: var(--coral);
}

/* Aside */
.contact-aside {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aside-phone-card {
    background: var(--black);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
}

.aside-phone-icon {
    width: 48px;
    height: 48px;
    background: rgba(46, 196, 182, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.aside-phone-icon svg {
    stroke: var(--teal);
}

.aside-phone-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.aside-phone-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 8px;
    line-height: 1;
    transition: opacity var(--transition);
}

.aside-phone-num:hover {
    opacity: 0.85;
}

.aside-phone-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.aside-map-card {
    background: var(--off-white);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
}

.aside-map-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
}

.aside-map-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.aside-map-badge {
    margin-left: auto;
    background: var(--teal);
    color: var(--white);
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
}

.aside-map {
    height: 260px;
    overflow: hidden;
    position: relative;
    background: var(--gray-lighter);
}

.aside-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.aside-map-note {
    padding: 12px 16px;
    font-size: 11px;
    color: var(--gray);
    font-family: var(--font-mono);
}

.aside-zones {
    background: var(--off-white);
    padding: 20px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
}

.aside-zones-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.aside-zones-title svg {
    stroke: var(--teal);
}

.aside-zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.aside-zones-tags span {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    padding: 5px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    border-radius: 2px;
}

/* ----------------------------------------------------------------
   FOOTER  ── fond marine, accents colorés
---------------------------------------------------------------- */
.footer {
    background: var(--black);
    color: var(--white);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-logo strong {
    font-weight: 800;
    color: var(--yellow);
}

.footer-brand>p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tel {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.01em;
    transition: opacity var(--transition);
    align-self: flex-start;
}

.footer-tel:hover {
    opacity: 0.8;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.06em;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.28);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--coral);
}

.footer-bottom nav {
    display: flex;
    gap: 24px;
}

/* ----------------------------------------------------------------
   FLOAT ACTIONS
---------------------------------------------------------------- */
.float-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 500;
}

.float-call {
    width: 52px;
    height: 52px;
    background: var(--coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(255, 107, 91, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.float-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255, 107, 91, 0.5);
}

.float-top {
    width: 52px;
    height: 52px;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid var(--gray-lighter);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    pointer-events: none;
}

.float-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.float-top:hover {
    background: var(--teal-light);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   SELECTION
---------------------------------------------------------------- */
::selection {
    background: var(--yellow);
    color: var(--black);
}

/* ================================================================
   PATCH — NAV BURGER + DRAWER + AUTOCOMPLETE
================================================================ */

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(26, 35, 50, 0.18);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
    flex-shrink: 0;
    border-radius: var(--radius);
}

.nav-burger:hover {
    border-color: var(--coral);
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-burger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--coral);
}

.nav-burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-burger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--coral);
}

.nav-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--coral);
    box-shadow: 0 8px 40px rgba(26, 35, 50, 0.1);
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s;
}

.nav-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-drawer-inner {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.nav-drawer-links li {
    border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.nav-drawer-links a {
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    transition: color var(--transition), padding-left var(--transition);
}

.nav-drawer-links a:hover {
    color: var(--coral);
    padding-left: 8px;
}

.nav-drawer-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    padding: 14px 24px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    justify-content: center;
    transition: background var(--transition);
    border-radius: var(--radius);
}

.nav-drawer-cta:hover {
    background: var(--coral-dark);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 35, 50, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
    top: var(--nav-h);
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* AUTOCOMPLETE */
.addr-wrap {
    position: relative;
}

.addr-field-wrap {
    position: relative;
}

.addr-spinner {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(46, 196, 182, 0.15);
    border-top-color: var(--teal);
    border-radius: 50%;
    display: none;
    animation: spin 0.7s linear infinite;
}

.addr-wrap.is-loading .addr-spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.addr-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--teal);
    border-top: none;
    box-shadow: 0 8px 24px rgba(26, 35, 50, 0.1);
    z-index: 200;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: var(--teal) transparent;
}

.addr-suggestions.is-visible {
    display: block;
}

.addr-suggestions li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-lighter);
    transition: background var(--transition);
}

.addr-suggestions li:last-child {
    border-bottom: none;
}

.addr-suggestions li:hover, .addr-suggestions li.is-highlighted {
    background: var(--teal-light);
}

.addr-suggestions li>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.sug-main {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sug-extra {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sug-dept {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--teal);
    padding: 2px 8px;
    flex-shrink: 0;
    border-radius: 2px;
}

.field-hint.is-error {
    color: var(--coral);
    font-weight: 500;
}

#c-postcode-display, #c-city-display {
    background: var(--gray-lighter);
    color: var(--gray);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    cursor: default;
    pointer-events: none;
    padding-left: 16px;
}

/* ================================================================
   RESPONSIVE
================================================================ */

@media (max-width: 1100px) {
    .nav {
        padding: 0 32px;
    }

    .nav-links {
        gap: 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left-panel {
        padding: 80px 48px 60px;
        min-height: 100vh;
    }

    .hero-left-panel::before {
        display: none;
    }

    .hero-right-panel {
        display: none;
    }

    .hero-diagonal {
        display: none;
    }

    .services {
        padding: 80px 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-label-vertical {
        display: none;
    }

    .methode {
        padding: 80px 48px;
    }

    .steps-horizontal {
        flex-wrap: wrap;
        gap: 3px;
    }

    .step-h {
        flex: 1 1 calc(50% - 40px);
        min-width: 200px;
    }

    .step-h-arrow {
        display: none;
    }

    .tarifs {
        padding: 80px 48px;
    }

    .tarifs-header {
        flex-direction: column;
        gap: 32px;
    }

    .tarifs-badge-wrap {
        align-self: flex-start;
    }

    .avis {
        padding: 80px 48px;
    }

    .avis-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .avis-grid {
        grid-template-columns: 1fr 1fr;
    }

    .avis-card--featured {
        grid-column: 1 / -1;
    }

    .cta-band {
        padding: 60px 48px;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .cta-band-right {
        align-items: flex-start;
    }

    .cta-band-sub {
        text-align: left;
    }

    .faq {
        padding: 80px 48px;
    }

    .faq-layout {
        grid-template-columns: 280px 1fr;
        gap: 48px;
    }

    .contact {
        padding: 80px 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .contact-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: start;
    }

    .aside-zones {
        grid-column: 1 / -1;
    }

    .footer-inner {
        padding: 0 48px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 60px;
    }

    .cursor-ring, .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    button, a {
        cursor: pointer;
    }

    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-logo-sub {
        display: none;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .nav-burger {
        display: flex;
    }

    .hero-left-panel {
        padding: 60px 24px 48px;
        min-height: auto;
    }

    .hero-title-line {
        font-size: clamp(44px, 12vw, 64px);
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 36px;
    }

    .btn-primary, .btn-ghost-light {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .hero-stats::-webkit-scrollbar {
        display: none;
    }

    .hero-stat {
        padding: 0 16px;
        flex-shrink: 0;
    }

    .hero-stat:first-child {
        padding-left: 0;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    .ticker-item {
        font-size: 13px;
        padding: 0 16px;
    }

    .services {
        padding: 60px 24px;
    }

    .services-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(34px, 9vw, 52px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-card-num {
        font-size: 60px;
    }

    .methode {
        padding: 60px 24px;
    }

    .methode-header {
        margin-bottom: 48px;
    }

    .steps-horizontal {
        flex-direction: column;
        gap: 3px;
    }

    .step-h {
        flex: 1 1 100%;
    }

    .methode-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .btn-primary-dark {
        width: 100%;
        justify-content: center;
    }

    .tarifs {
        padding: 60px 24px;
    }

    .tarifs-header {
        gap: 28px;
    }

    .tarif-row {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tarif-row-price {
        align-self: flex-end;
    }

    .avis {
        padding: 60px 24px;
    }

    .avis-global-score {
        font-size: 52px;
    }

    .avis-grid {
        grid-template-columns: 1fr;
    }

    .avis-card--featured {
        grid-column: auto;
    }

    .cta-band {
        padding: 48px 24px;
    }

    .cta-band-title {
        font-size: clamp(38px, 10vw, 60px);
    }

    .cta-band-btn {
        font-size: 20px;
        padding: 16px 28px;
        width: 100%;
        justify-content: center;
    }

    .cta-band-geo {
        display: none;
    }

    .faq {
        padding: 60px 24px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left {
        position: static;
    }

    .faq-cta {
        width: auto;
        display: inline-flex;
    }

    .faq-btn {
        padding: 18px 20px;
    }

    .faq-btn>span:nth-child(2) {
        font-size: 15px;
    }

    .faq-body p {
        padding: 0 20px 20px 20px;
    }

    .contact {
        padding: 60px 24px;
    }

    .field-duo {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-btn, .btn-ghost-dark {
        width: 100%;
        justify-content: center;
    }

    .contact-aside {
        grid-template-columns: 1fr;
    }

    .aside-zones {
        grid-column: auto;
    }

    .footer-inner {
        padding: 0 24px;
    }

    .footer-top {
        padding: 48px 0 40px;
        gap: 40px;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
        font-size: 10px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .float-actions {
        bottom: 20px;
        right: 16px;
    }

    .float-call, .float-top {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .nav-cta-txt {
        display: none;
    }

    .nav-cta {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .hero-title-line {
        font-size: clamp(38px, 13vw, 56px);
    }

    .hero-eyebrow {
        font-size: 10px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .tarifs-badge {
        padding: 16px 20px;
    }

    .cta-band-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .avis-card {
        padding: 24px;
    }
}

/* ================================================================
   LEGAL — Mentions légales, CGU, Confidentialité
================================================================ */
.legal-main {
    min-height: 100vh;
    background: var(--white);
    padding-top: var(--nav-h);
}

.legal-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px 120px;
}

.legal-hero {
    padding: 80px 0 64px;
    border-bottom: 3px solid var(--coral);
    margin-bottom: 0;
}

.legal-hero .tag-outline {
    margin-bottom: 24px;
}

.legal-h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: var(--black);
}

.legal-h1 em {
    font-style: italic;
    font-weight: 700;
    color: var(--coral);
}

.legal-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.legal-date svg {
    stroke: var(--teal);
    flex-shrink: 0;
}

.legal-intro {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray);
    max-width: 680px;
}

.legal-intro strong {
    color: var(--black);
    font-weight: 600;
}

.legal-body {
    padding-top: 0;
}

.legal-section {
    border-bottom: 1px solid var(--gray-lighter);
    padding: 48px 0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.1;
}

.legal-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--teal);
    padding: 4px 10px;
    flex-shrink: 0;
    line-height: 1;
    border-radius: 2px;
}

.legal-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-block p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
}

.legal-block p strong {
    color: var(--black);
    font-weight: 600;
}

.legal-block a {
    color: var(--teal-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(31, 169, 157, 0.35);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.legal-block a:hover {
    color: var(--coral);
    border-color: var(--coral);
}

.legal-block ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.legal-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 2px;
    background: var(--coral);
    flex-shrink: 0;
}

.legal-block ul li strong {
    color: var(--black);
    font-weight: 600;
}

.legal-block ul li a {
    color: var(--teal-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(31, 169, 157, 0.35);
}

.legal-notice {
    background: var(--teal-light);
    border-left: 3px solid var(--teal);
    padding: 16px 20px !important;
    font-size: 14px !important;
    color: var(--black) !important;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.legal-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 48px;
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: var(--radius);
}

.legal-btn-home:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

.legal-btn-home svg {
    transition: transform 0.3s ease;
}

.legal-btn-home:hover svg {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .legal-wrap {
        padding: 0 24px 80px;
    }

    .legal-hero {
        padding: 48px 0 40px;
    }

    .legal-h1 {
        font-size: clamp(40px, 11vw, 64px);
    }

    .legal-intro {
        font-size: 15px;
    }

    .legal-section {
        padding: 36px 0;
    }

    .legal-section h2 {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .legal-num {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .legal-wrap {
        padding: 0 16px 64px;
    }

    .legal-h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .legal-btn-home {
        width: 100%;
        justify-content: center;
    }
}