/* ============================================================
   ROOT
============================================================ */
:root {
    --teal: #0BC4C4;
    --teal-d: #08A0A0;
    --teal-dk: #079494;
    --yellow: #F5C300;
    --coral: #FF5F40;
    --coral-d: #E04020;
    --dark: #0A1628;
    --white: #FFFFFF;
    --light: #F4F8FB;
    --muted: #5a6a80;
    --text: #3B4A5A;
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--light);
    color: var(--text);
}

/* ============================================================
   NAV (style conservé)
============================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;

    height: 72px;
    padding: 0 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(244, 248, 251, .85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(11, 196, 196, .18);

    transition: box-shadow .3s, background .3s;
}

#nav.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--teal);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--dark);
    line-height: 1.1;
}

.nav-logo-text span {
    display: block;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
}

/* Right wrapper */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Menu container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width .25s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA (appel) — style identique, + icône */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--coral);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 4px;

    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;

    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--coral-d);
    transform: translateY(-1px);
}

.icon-call {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Burger */
#nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

#nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ============================================================
   RESPONSIVE HEADER (TABLETTE + MOBILE)
============================================================ */

/* Tablette */
@media (max-width: 1024px) {
    #nav {
        padding: 0 24px;
    }

    .nav-links {
        gap: 22px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    #nav {
        padding: 0 18px;
        height: 64px;
    }

    /* Burger visible */
    #nav-toggle {
        display: flex;
    }

    /* Le bloc menu devient un panneau */
    .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;

        background: rgba(244, 248, 251, .96);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(11, 196, 196, .18);

        padding: 16px 18px 18px;

        /* fermé par défaut */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);

        transition: max-height .35s var(--ease), opacity .25s, transform .25s;
    }

    /* ouvert */
    #nav.open .nav-menu {
        max-height: 80vh;
        opacity: 1;
        transform: translateY(0);
    }

    /* Liste des rubriques */
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    /* Séparateurs + respiration */
    .nav-links li {
        list-style: none;
        border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .nav-links li:first-child {
        border-top: 0;
    }

    .nav-links li+li {
        margin-top: 6px;
    }

    /* ✅ UX: espacement */

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 18px 6px;
        /* ✅ UX: zone cliquable + air */
        font-size: .85rem;
        letter-spacing: .1em;
    }

    /* underline moins collé */
    .nav-links a::after {
        bottom: 6px;
    }

    /* CTA dans le menu (plein largeur) */
    .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        margin-top: 18px;
        /* ✅ séparation visuelle */
    }

    /* Burger -> X */
    #nav.open #nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    #nav.open #nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    #nav.open #nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


body {
    font-family: var(--font-body);
    background: #f4f8fb;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative;
    padding: 110px 48px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 65% at 15% 15%, rgba(11, 196, 196, .12) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 88% 75%, rgba(255, 95, 64, .08) 0%, transparent 55%),
        linear-gradient(165deg, #f0f6fa 0%, #f7f9fb 55%, #faf4f2 100%);
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 196, 196, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 196, 196, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 56px;
    align-items: center;
}

/* ============================================================
   IMAGE WRAP — le padding est le garant que rien ne déborde
   Logique : chaque badge a besoin de son espace dans le padding
   - Badge urgence (haut) : padding-top ≥ hauteur badge (~34px) + marge
   - Badge 7j/7 (bas-droite) : padding-bottom ≥ 80px/2, padding-right ≥ 80px/2
   - Card devis (bas-gauche) : padding-bottom ≥ hauteur card, padding-left ≥ débord
============================================================ */
.hero-media-wrap {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 460px;
    /*
      Desktop :
        top    44px  → badge urgence (34px de haut + 10px d'air)
        right  52px  → badge 7j/7 (80px, centré → 40px débord + 12px air)
        bottom 52px  → badge 7j/7 (idem)
        left   32px  → card devis (débord ~28px + air)
    */
    padding: 44px 52px 52px 32px;
}

/* Cercle décoratif derrière */
.hero-media-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(11, 196, 196, .18), transparent 65%);
    z-index: 0;
    pointer-events: none;
}

/* Arc pointillé */
.hero-media-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px dashed rgba(11, 196, 196, .30);
    z-index: 0;
    pointer-events: none;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.hero-media {
    position: relative;
    z-index: 2;
    border-radius: 14px;
    overflow: visible;
}

.hero-media-inner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, .9) inset,
        0 24px 60px rgba(10, 22, 40, .16),
        0 4px 12px rgba(11, 196, 196, .12);
    border: 1px solid rgba(255, 255, 255, .85);
}

.hero-media-inner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-media-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(11, 196, 196, .12) 0%, transparent 45%),
        linear-gradient(to bottom, transparent 55%, rgba(10, 22, 40, .30) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-media-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dk) 50%, var(--yellow));
    z-index: 3;
}

/* Coins décoratifs */
.media-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 5;
    pointer-events: none;
}

.media-corner--tl {
    top: -6px;
    left: -6px;
    border-top: 2px solid var(--teal);
    border-left: 2px solid var(--teal);
    border-radius: 4px 0 0 0;
}

.media-corner--br {
    bottom: -6px;
    right: -6px;
    border-bottom: 2px solid var(--coral);
    border-right: 2px solid var(--coral);
    border-radius: 0 0 4px 0;
}

/* ---- Badge URGENCE ---- */
.media-badge-urgency {
    position: absolute;
    /* Positionné par rapport à .hero-media-wrap */
    top: 8px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(10, 22, 40, .22);
    border: 1px solid rgba(255, 255, 255, .08);
    animation: heroBadgeIn .6s var(--ease) .6s both;
    /* Empêche d'être plus large que le wrap */
    max-width: calc(100% - 32px);
    white-space: nowrap;
}

.media-badge-urgency-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    animation: heroPulse 2.2s infinite;
}

/* ---- Badge 7j/7 ---- */
.media-badge-avail {
    position: absolute;
    /*
      Centré dans le padding bas-droite :
      padding-bottom = 52px, badge height = 80px → bottom = (52-80)/2 = -14 → on met 6px
      padding-right  = 52px, badge width  = 80px → right = (52-80)/2 → on met 8px
    */
    bottom: 8px;
    right: 8px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    box-shadow: 0 8px 28px rgba(11, 196, 196, .40);
    border: 3px solid rgba(255, 255, 255, .9);
    animation: heroBadgeIn .6s var(--ease) .75s both;
}

.media-badge-avail span:first-child {
    font-size: 1.15rem;
    line-height: 1;
}

.media-badge-avail span:last-child {
    font-size: .52rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .85;
}

/* ---- Mini card Devis ---- */
.media-card-devis {
    position: absolute;
    left: 0;
    bottom: 70px;
    z-index: 10;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(11, 196, 196, .18);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 12px 32px rgba(10, 22, 40, .12);
    display: flex;
    align-items: center;
    gap: 9px;
    animation: heroBadgeIn .6s var(--ease) .9s both;
    /* FIX : empêche la card de déborder si le wrap est étroit */
    max-width: calc(100% - 90px);
    /* laisse la place au badge 7j/7 */
}

.media-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11, 196, 196, .15), rgba(11, 196, 196, .05));
    border: 1px solid rgba(11, 196, 196, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.media-card-text {
    display: flex;
    flex-direction: column;
}

.media-card-label {
    font-family: var(--font-head);
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--teal-dk);
    line-height: 1;
}

.media-card-value {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-top: 2px;
    /* FIX : évite que le texte force la card à s'élargir et déborder */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lignes décoratives */
.media-line-h {
    position: absolute;
    top: 50%;
    right: -4px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 196, 196, .4));
    z-index: 3;
    pointer-events: none;
}

.media-line-v {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, rgba(11, 196, 196, .4), transparent);
    z-index: 3;
    pointer-events: none;
}

/* ============================================================
   CONTENU GAUCHE
============================================================ */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .28);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--teal-dk);
    font-family: var(--font-head);
    margin-bottom: 20px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: heroPulse 2.2s infinite;
}

@keyframes heroPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(11, 196, 196, .35);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(11, 196, 196, 0);
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.025em;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--teal);
    position: relative;
    white-space: nowrap;
}

.hero-title em::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s var(--ease) .4s;
}

.hero-reveal.is-visible .hero-title em::after {
    transform: scaleX(1);
}

.hero-title-line {
    display: block;
    margin-top: 8px;
    -webkit-text-stroke: 1.8px var(--coral);
    color: transparent;
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.78;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-sub strong {
    color: var(--dark);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s, background .2s;
    box-shadow: 0 4px 16px rgba(255, 95, 64, .20);
}

.btn-primary:hover {
    background: var(--coral-d);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 95, 64, .30);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 6px;
    border: 1.5px solid rgba(10, 22, 40, .14);
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .2s;
}

.btn-secondary:hover {
    border-color: rgba(11, 196, 196, .4);
    background: rgba(11, 196, 196, .07);
    transform: translateY(-2px);
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: .88rem;
    color: var(--muted);
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-points li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(11, 196, 196, .12);
    border: 1.5px solid rgba(11, 196, 196, .30);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10.5l3.5 3.5L15 7' stroke='%230bc4c4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes heroBadgeIn {
    from {
        opacity: 0;
        transform: scale(.8) translateY(6px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.hero-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-delay-1 {
    transition-delay: .05s;
}

.hero-delay-2 {
    transition-delay: .12s;
}

.hero-delay-3 {
    transition-delay: .20s;
}

.hero-delay-4 {
    transition-delay: .28s;
}

.hero-delay-5 {
    transition-delay: .36s;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    #hero {
        padding: 96px 28px 64px;
    }

    .hero-inner {
        gap: 36px;
    }
}

/* ---- Colonne unique à partir de 900px ---- */
@media (max-width: 900px) {
    #hero {
        padding: 88px 20px 56px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        order: 1;
    }

    .hero-media-wrap {
        order: 2;
    }

    .hero-media-wrap {
        max-width: 100%;
        justify-self: stretch;
        /*
          FIX PRINCIPAL :
          - padding-top  : 48px → badge urgence (34px) + 14px d'air
          - padding-right : 96px → badge 7j/7 (80px diamètre) + 16px d'air
                                   AVANT c'était 24px → badge coupé !
          - padding-bottom: 96px → badge 7j/7 (80px) + 16px d'air
                                   AVANT c'était 24px → badge coupé !
          - padding-left  : 16px → juste assez pour l'air visuel
        */
        padding: 48px 96px 96px 16px;
    }

    .hero-media-inner img {
        height: 220px;
    }

    .media-badge-urgency {
        top: 10px;
        left: 12px;
        font-size: .6rem;
        padding: 6px 12px;
    }

    /* Badge 7j/7 : dans le padding bas-droite agrandi */
    .media-badge-avail {
        width: 72px;
        height: 72px;
        bottom: 12px;
        right: 12px;
    }

    .media-badge-avail span:first-child {
        font-size: 1.05rem;
    }

    /* Card devis : bas-gauche, max-width pour ne pas toucher le badge 7j/7 */
    .media-card-devis {
        left: 12px;
        bottom: 12px;
        padding: 8px 12px;
        max-width: calc(100% - 110px);
        /* 96px padding-right + 14px air */
    }

    .media-line-h, .media-line-v {
        display: none;
    }

    .hero-media-wrap::before {
        width: 140px;
        height: 140px;
    }

    .hero-media-wrap::after {
        width: 90px;
        height: 90px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE ONLY FIXES
   Remplace les sections @media existantes
============================================================ */

@media (max-width: 1024px) {
    #hero {
        padding: 96px 28px 64px;
    }

    .hero-inner {
        gap: 36px;
    }
}

@media (max-width: 900px) {
    #hero {
        padding: 88px 20px 56px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        order: 1;
    }

    .hero-media-wrap {
        order: 2;
    }

    /* Image wrap : padding zéro, centré */
    .hero-media-wrap {
        max-width: 100%;
        justify-self: center;
        /* FIX : écrase le justify-self: end du desktop */
        width: 100%;
        padding: 0;
    }

    /* Image elle-même centrée dans son conteneur */
    .hero-media {
        width: 100%;
    }

    /* Image pleine largeur, hauteur réduite */
    .hero-media-inner img {
        height: 240px;
    }

    /* ---- Masquer TOUT l'habillage sur mobile ---- */
    .media-badge-urgency,
    .media-badge-avail,
    .media-card-devis,
    .media-corner,
    .media-line-h,
    .media-line-v {
        display: none;
    }

    /* Masquer aussi les pseudo-éléments décoratifs du wrap */
    .hero-media-wrap::before,
    .hero-media-wrap::after {
        display: none;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 76px 16px 48px;
    }

    .hero-media-inner img {
        height: 200px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }
}


/* ============================================================
   SECTION SERVICES
============================================================ */
#services {
    background: #f4f8fb;
    padding: 100px 48px 110px;
    position: relative;
    overflow: hidden;
}

/* Blob déco haut-gauche */
#services::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -140px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 196, 196, .10), transparent 68%);
    pointer-events: none;
}

/* Blob déco bas-droite */
#services::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 64, .06), transparent 65%);
    pointer-events: none;
}

/* Grille de fond */
.services-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 196, 196, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 196, 196, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---- En-tête ---- */
.services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-dk);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-tag::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--teal), var(--teal-d));
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -.022em;
    line-height: 1.04;
    color: var(--dark);
}

.section-title em {
    font-style: normal;
    color: var(--teal);
    position: relative;
}

.section-title em::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s var(--ease) .3s;
}

.section-title.is-visible em::after,
.services-reveal.is-visible~* .section-title em::after {
    transform: scaleX(1);
}

/* Hack : on trigger via la classe sur le titre lui-même */
.section-title.animated em::after {
    transform: scaleX(1);
}

.section-sub {
    margin-top: 14px;
    font-size: .98rem;
    line-height: 1.76;
    color: var(--muted);
    max-width: 580px;
}

/* Note info */
.services-note {
    max-width: 320px;
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(11, 196, 196, .22);
    box-shadow: 0 8px 24px rgba(11, 196, 196, .08);
    flex-shrink: 0;
}

.services-note strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .88rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.services-note strong::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(11, 196, 196, .15);
}

.services-note span {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--muted);
}

/* ============================================================
   GRILLE DES CARTES
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

/* ---- Carte de base ---- */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(10, 22, 40, .09);
    border-radius: 14px;
    padding: 28px 24px 24px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 12px 32px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    transition:
        transform .25s var(--ease),
        border-color .25s,
        box-shadow .25s;
    overflow: hidden;
}

/* Ligne colorée en haut au hover */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
    border-radius: 14px 14px 0 0;
    opacity: 0;
    transition: opacity .25s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 196, 196, .28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 22px 50px rgba(0, 0, 0, .09),
        0 4px 12px rgba(11, 196, 196, .10);
}

/* Numéro décoratif de fond */
.svc-bg-num {
    position: absolute;
    bottom: -14px;
    right: 12px;
    font-family: var(--font-head);
    font-size: 7rem;
    font-weight: 800;
    color: rgba(10, 22, 40, .035);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -.04em;
    user-select: none;
}

/* ---- Carte featured ---- */
.service-card.featured {
    background: linear-gradient(145deg, #0d2a3a 0%, #0a1e2e 100%);
    border-color: rgba(11, 196, 196, .30);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .06) inset,
        0 20px 50px rgba(10, 22, 40, .22),
        0 4px 16px rgba(11, 196, 196, .15);
    color: var(--white);
}

.service-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--teal), rgba(11, 196, 196, .4));
}

.service-card.featured .svc-bg-num {
    color: rgba(255, 255, 255, .04);
}

.service-card.featured:hover {
    transform: translateY(-5px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .06) inset,
        0 28px 64px rgba(10, 22, 40, .30),
        0 4px 20px rgba(11, 196, 196, .22);
}

/* ---- Haut de carte (icône + numéro) ---- */
.svc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

/* ---- ICÔNE ---- */
.svc-icon-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

/* Halo derrière l'icône */
.svc-icon-wrap::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 14px;
    background: rgba(11, 196, 196, .08);
    border: 1px solid rgba(11, 196, 196, .14);
    transition: background .25s, border-color .25s;
}

.service-card:hover .svc-icon-wrap::before,
.service-card.featured .svc-icon-wrap::before {
    background: rgba(11, 196, 196, .14);
    border-color: rgba(11, 196, 196, .28);
}

/* Boîte principale de l'icône */
.svc-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 196, 196, .12);
    border: 1.5px solid rgba(11, 196, 196, .22);
    color: var(--teal);
    transition: background .25s, color .25s, box-shadow .25s;
}

.service-card:hover .svc-icon {
    background: rgba(11, 196, 196, .18);
    box-shadow: 0 6px 18px rgba(11, 196, 196, .22);
}

.service-card.featured .svc-icon {
    background: rgba(11, 196, 196, .2);
    border-color: rgba(11, 196, 196, .40);
    color: var(--teal);
    box-shadow: 0 4px 16px rgba(11, 196, 196, .20);
}

.svc-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.75;
}

/* Numéro discret haut-droite */
.svc-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .68rem;
    letter-spacing: .12em;
    color: rgba(10, 22, 40, .20);
    padding: 4px 8px;
    border-radius: 100px;
    border: 1px solid rgba(10, 22, 40, .08);
    background: rgba(10, 22, 40, .03);
}

.service-card.featured .svc-num {
    color: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
}

/* ---- Texte ---- */
.svc-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.12rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card.featured .svc-title {
    color: var(--white);
}

.svc-desc {
    font-size: .91rem;
    line-height: 1.72;
    color: var(--muted);
    margin-bottom: auto;
    padding-bottom: 20px;
}

.service-card.featured .svc-desc {
    color: rgba(255, 255, 255, .65);
}

/* ---- Séparateur ---- */
.svc-sep {
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 196, 196, .18), transparent);
    margin-bottom: 16px;
}

.service-card.featured .svc-sep {
    background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent);
}

/* ---- Lien CTA ---- */
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--teal-dk);
    text-decoration: none;
    transition: gap .2s var(--ease), color .2s;
}

.svc-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .2s var(--ease);
}

.svc-link:hover {
    gap: 12px;
}

.svc-link:hover svg {
    transform: translate(2px, -2px);
}

.service-card.featured .svc-link {
    color: var(--teal);
}

/* ============================================================
   ANIMATIONS
============================================================ */
.services-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.services-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-delay-1 {
    transition-delay: .08s;
}

.services-delay-2 {
    transition-delay: .16s;
}

.services-delay-3 {
    transition-delay: .24s;
}

.services-delay-4 {
    transition-delay: .32s;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    #services {
        padding: 80px 28px 90px;
    }

    .services-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-note {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    #services {
        padding: 70px 18px 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   SECTION ZONES
============================================================ */
#zones {
    background: #f4f8fb;
    padding: 100px 48px 110px;
    position: relative;
    overflow: hidden;
}

/* Blob jaune haut-droite */
#zones::before {
    content: "";
    position: absolute;
    right: -160px;
    top: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, .13), transparent 68%);
    pointer-events: none;
}

/* Blob teal bas-gauche */
#zones::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 196, 196, .09), transparent 65%);
    pointer-events: none;
}

/* Grille de fond */
.zones-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 196, 196, .032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 196, 196, .032) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.zones-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: start;
}

/* ============================================================
   COLONNE GAUCHE
============================================================ */
.zones-left {}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-dk);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-tag::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--teal), var(--teal-d));
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -.022em;
    line-height: 1.04;
    color: var(--dark);
    margin-bottom: 14px;
}

.section-title em {
    font-style: normal;
    color: var(--teal);
}

.no-wrap {
    white-space: nowrap;
}

.section-sub {
    font-size: .98rem;
    line-height: 1.76;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 20px;
}

.section-sub strong {
    color: var(--dark);
    font-weight: 600;
}

/* SEO block */
.zones-seo {
    margin-top: 6px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 22, 40, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.zones-seo p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.74;
    color: var(--muted);
}

/* ---- Tags des villes ---- */
.zones-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zone-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 22, 40, .10);
    border-radius: 999px;
    padding: 7px 14px;
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, .75);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: border-color .2s, background .2s, transform .2s var(--ease), box-shadow .2s;
    cursor: default;
}

.zone-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(10, 22, 40, .20);
    flex-shrink: 0;
    transition: background .2s;
}

.zone-tag:hover {
    border-color: rgba(11, 196, 196, .30);
    background: rgba(11, 196, 196, .07);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(11, 196, 196, .10);
}

.zone-tag:hover::before {
    background: var(--teal);
}

/* Tag principal */
.zone-tag.main {
    background: linear-gradient(135deg, var(--teal), var(--teal-d));
    border-color: var(--teal-d);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(11, 196, 196, .28);
}

.zone-tag.main::before {
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .25);
    animation: tagPulse 2.2s infinite;
}

.zone-tag.main:hover {
    background: linear-gradient(135deg, var(--teal-d), var(--teal-dk));
    border-color: var(--teal-dk);
    box-shadow: 0 8px 24px rgba(11, 196, 196, .35);
}

@keyframes tagPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .35);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
    }
}

/* ---- Actions ---- */
.zones-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 95, 64, .20);
    transition: transform .2s var(--ease), box-shadow .2s, background .2s;
}

.btn-primary:hover {
    background: var(--coral-d);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 95, 64, .28);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1.5px solid rgba(10, 22, 40, .14);
    font-family: var(--font-head);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .2s;
}

.btn-secondary:hover {
    border-color: rgba(11, 196, 196, .40);
    background: rgba(11, 196, 196, .07);
    transform: translateY(-2px);
}

/* ============================================================
   COLONNE DROITE — CARTE HABILLÉE
============================================================ */
.zones-right {
    position: relative;
}

/* Cadre principal de la carte */
.zones-map {
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(10, 22, 40, .09);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 20px 52px rgba(0, 0, 0, .08),
        0 4px 14px rgba(11, 196, 196, .07);
    overflow: hidden;
}

/* Barre colorée en haut */
.zones-map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow) 60%, var(--coral));
    z-index: 3;
}

/* Coin déco bas-droite */
.zones-map::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 196, 196, .12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* En-tête de la carte */
.zones-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(10, 22, 40, .06);
    position: relative;
    z-index: 1;
}

.zones-map-header-left {
    display: flex;
    align-items: center;
    gap: 9px;
}

.zones-map-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px rgba(11, 196, 196, .15);
    animation: zonesPulse 2.4s infinite;
    flex-shrink: 0;
}

@keyframes zonesPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(11, 196, 196, .30);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(11, 196, 196, 0);
    }
}

.zones-map-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .02em;
    color: var(--dark);
}

/* Badge "Val-de-Marne 94" */
.zones-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .22);
    font-family: var(--font-head);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--teal-dk);
}

/* Wrapper SVG */
.zones-map-svg-wrap {
    position: relative;
    padding: 16px;
}

.zones-map-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

/* Note bas */
.zones-map-note {
    padding: 10px 16px 14px;
    font-size: .8rem;
    line-height: 1.55;
    color: rgba(59, 74, 90, .60);
    border-top: 1px solid rgba(10, 22, 40, .05);
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1;
}

.zones-map-note::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='rgba(59,74,90,.4)' stroke-width='1.5'/%3E%3Cpath d='M12 8v4' stroke='rgba(59,74,90,.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='16' r='0.75' fill='rgba(59,74,90,.4)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Déco extérieure : cercle pointillé rotatif */
.zones-map-deco-ring {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1.5px dashed rgba(11, 196, 196, .28);
    pointer-events: none;
    z-index: 0;
    animation: spinSlow 18s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

/* Déco extérieure : coin teal */
.zones-map-deco-corner-tl {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 26px;
    height: 26px;
    border-top: 2px solid var(--teal);
    border-left: 2px solid var(--teal);
    border-radius: 5px 0 0 0;
    pointer-events: none;
    z-index: 5;
}

.zones-map-deco-corner-br {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-bottom: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
    border-radius: 0 0 5px 0;
    pointer-events: none;
    z-index: 5;
}

/* ============================================================
   ANIMATIONS
============================================================ */
.zones-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.zones-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.zones-delay-1 {
    transition-delay: .10s;
}

.zones-delay-2 {
    transition-delay: .20s;
}

.zones-delay-3 {
    transition-delay: .30s;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    #zones {
        padding: 80px 28px 90px;
    }

    .zones-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .zones-right {
        max-width: 560px;
    }
}

@media (max-width: 700px) {
    #zones {
        padding: 70px 18px 80px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


.pin-halo {
    transform-origin: 262px 218px;
    animation: pinPulse 2.6s ease-in-out infinite;
}

.pin-ring {
    transform-origin: 262px 218px;
    animation: pinPulse 2.6s ease-in-out infinite .4s;
}

@keyframes pinPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.15);
    }
}

/* ============================================================
   SECTION TARIFS (même style travaillé)
============================================================ */
#tarifs {
    background: #f4f8fb;
    padding: 100px 48px 110px;
    position: relative;
    overflow: hidden;
}

/* blobs */
#tarifs::before {
    content: "";
    position: absolute;
    left: -150px;
    top: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 196, 196, .10), transparent 68%);
    pointer-events: none;
}

#tarifs::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 64, .10), transparent 68%);
    pointer-events: none;
}

/* grille fond */
.tarifs-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 196, 196, .030) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 196, 196, .030) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.tarifs-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* header */
.tarifs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 26px;
}

/* note à droite */
.tarifs-note {
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 22, 40, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.tarifs-note strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    margin-bottom: 6px;
}

.tarifs-note span {
    display: block;
    font-size: .9rem;
    line-height: 1.65;
    color: var(--muted);
}

/* SEO block */
.tarifs-seo {
    margin-top: 6px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 22, 40, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    margin-bottom: 18px;
}

.tarifs-seo p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.74;
    color: var(--muted);
}

/* Card tableau */
.tarifs-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(10, 22, 40, .09);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 20px 52px rgba(0, 0, 0, .08),
        0 4px 14px rgba(11, 196, 196, .07);
    overflow: hidden;
}

/* bande gradient top */
.tarifs-card::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow) 60%, var(--coral));
}

/* card head */
.tarifs-card-head {
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(10, 22, 40, .06);
}

.tarifs-card-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .01em;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tarifs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .22);
    font-family: var(--font-head);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--teal-dk);
}

.tarifs-card-meta {
    margin-top: 8px;
    font-size: .84rem;
    line-height: 1.6;
    color: rgba(59, 74, 90, .70);
}

/* table */
.tarifs-table-wrap {
    width: 100%;
    overflow: auto;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
    /* scroll horizontal mobile */
}

.tarifs-table thead th {
    text-align: left;
    padding: 14px 18px;
    font-family: var(--font-head);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, .75);
    border-bottom: 1px solid rgba(10, 22, 40, .06);
    background: rgba(244, 248, 251, .65);
}

.tarifs-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(10, 22, 40, .05);
    font-size: .92rem;
    color: rgba(10, 22, 40, .78);
    vertical-align: top;
}

.tarifs-table tbody tr:hover {
    background: rgba(11, 196, 196, .05);
}

.tarifs-table tbody td:first-child {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--dark);
}

.tarifs-table tbody td:last-child strong {
    color: var(--teal-dk);
    font-family: var(--font-head);
    font-weight: 800;
    white-space: nowrap;
}

/* disclaimer */
.tarifs-disclaimer {
    padding: 14px 18px 16px;
    border-top: 1px solid rgba(10, 22, 40, .05);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(59, 74, 90, .70);
}

.tarifs-i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 4px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='rgba(59,74,90,.45)' stroke-width='1.5'/%3E%3Cpath d='M12 8v4' stroke='rgba(59,74,90,.45)' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='16' r='0.75' fill='rgba(59,74,90,.45)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.tarifs-disclaimer p {
    margin: 0;
    font-size: .86rem;
    line-height: 1.65;
}

/* actions */
.tarifs-actions {
    padding: 16px 18px 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Mini FAQ */
.tarifs-faq {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 22, 40, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.tarifs-faq-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.tarifs-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tarifs-faq-item {
    border: 1px solid rgba(10, 22, 40, .08);
    background: rgba(244, 248, 251, .55);
    border-radius: 12px;
    padding: 12px 12px;
}

.tarifs-faq-item strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .84rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.tarifs-faq-item span {
    display: block;
    font-size: .86rem;
    line-height: 1.6;
    color: rgba(59, 74, 90, .78);
}

/* ============================================================
   Reveal animations
============================================================ */
.tarifs-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.tarifs-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tarifs-delay-1 {
    transition-delay: .10s;
}

.tarifs-delay-2 {
    transition-delay: .20s;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1024px) {
    #tarifs {
        padding: 80px 28px 90px;
    }

    .tarifs-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tarifs-note {
        max-width: 100%;
    }

    .tarifs-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #tarifs {
        padding: 70px 18px 80px;
    }

    .tarifs-actions .btn-primary,
    .tarifs-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   AVIS — BACKGROUND SOMBRE, SOBRE, PRO
============================================================ */
#avis {
    background: #0a1628;
    /* sombre dominant */
    padding: 90px 48px;
    position: relative;
    overflow: hidden;
}

/* Grille très discrète (sombre) */
#avis::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 90px 90px;
    pointer-events: none;
}

.avis-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   HEADER
============================================================ */
.avis-head {
    max-width: 720px;
    margin-bottom: 34px;
}

#avis .section-title {
    color: #ffffff;
}

#avis .section-title em {
    color: var(--teal);
}

#avis .section-sub {
    color: rgba(200, 216, 232, .85);
}

/* ============================================================
   GRID AVIS
============================================================ */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ============================================================
   CARTE AVIS
============================================================ */
.avis-card {
    background: #0f1e38;
    /* sombre mais contrasté */
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.avis-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 196, 196, .35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .55);
}

/* ============================================================
   ÉTOILES
============================================================ */
.avis-stars {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .12em;
    color: var(--yellow);
    margin-bottom: 10px;
}

/* ============================================================
   TEXTE AVIS
============================================================ */
.avis-text {
    font-size: .92rem;
    line-height: 1.75;
    color: rgba(200, 216, 232, .88);
    margin-bottom: 14px;
    position: relative;
}

.avis-text::before {
    content: "“";
    font-family: Georgia, serif;
    font-size: 2rem;
    color: rgba(11, 196, 196, .35);
    margin-right: 6px;
    vertical-align: -0.35em;
}

/* ============================================================
   META
============================================================ */
.avis-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 12px;
}

.avis-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .82rem;
    color: #ffffff;
}

.avis-type {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(200, 216, 232, .55);
    font-weight: 700;
}

/* ============================================================
   FOOTER
============================================================ */
.avis-foot {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.avis-foot-box {
    background: #0f1e38;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

.avis-foot-box strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.avis-foot-box span {
    display: block;
    color: rgba(200, 216, 232, .75);
    font-size: .9rem;
    line-height: 1.6;
}

/* ============================================================
   ANIMATIONS LÉGÈRES
============================================================ */
.avis-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease;
}

.avis-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.avis-delay-1 {
    transition-delay: .08s;
}

.avis-delay-2 {
    transition-delay: .16s;
}

/* ============================================================
   AVIS — BOUTON "NOUS CONTACTER" (TEXTE CLAIR)
============================================================ */
#avis .btn-secondary {
    background: transparent;
    color: #ffffff;
    /* TEXTE BLANC */
    border: 1.5px solid rgba(255, 255, 255, .65);
    box-shadow: none;
}

#avis .btn-secondary:hover {
    background: rgba(255, 255, 255, .10);
    border-color: #ffffff;
    color: #ffffff;
    /* reste blanc au hover */
    transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    #avis {
        padding: 80px 28px;
    }

    .avis-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #avis {
        padding: 70px 18px;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   PROCESSUS — INTERVENTION EN 4 ÉTAPES (AMÉLIORÉ)
============================================================ */
#processus {
    background: linear-gradient(180deg, #081326 0%, #0c1b33 100%);
    padding: 110px 48px;
    position: relative;
    overflow: hidden;
}

/* Ligne de progression */
#processus::after {
    content: "";
    position: absolute;
    top: 58%;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(11, 196, 196, .4),
            transparent);
}

/* Container */
.process-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   HEADER
============================================================ */
.process-head {
    max-width: 760px;
    margin-bottom: 80px;
}

.section-tag--light {
    color: #ffffff;
    /* TEXTE BLANC */
    opacity: .85;
}

.section-tag--light::before {
    background: rgba(255, 255, 255, .6);
}

.process-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.025em;
}

.process-title em {
    color: var(--teal);
    font-style: normal;
}

/* ============================================================
   STEPS
============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    position: relative;
}

/* Carte */
.process-step {
    position: relative;
    padding-top: 72px;
}

/* Cercle numéro */
.process-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(11, 196, 196, .35), rgba(11, 196, 196, .08));
    border: 1px solid rgba(11, 196, 196, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: var(--teal);
    letter-spacing: .1em;
    box-shadow:
        0 0 0 6px rgba(11, 196, 196, .08),
        0 12px 30px rgba(0, 0, 0, .45);
}

/* Titres */
.process-step h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Texte */
.process-step p {
    font-size: .94rem;
    line-height: 1.75;
    color: rgba(200, 216, 232, .88);
}

/* ============================================================
   Animations (douces)
============================================================ */
.process-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.process-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-delay-1 {
    transition-delay: .12s;
}

.process-delay-2 {
    transition-delay: .24s;
}

.process-delay-3 {
    transition-delay: .36s;
}

.process-delay-4 {
    transition-delay: .48s;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    #processus {
        padding: 90px 28px;
    }

    #processus::after {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 700px) {


    #processus {
        padding: 80px 18px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        padding-top: 64px;
    }
}

/* ============================================================
   SECTION CONTACT
============================================================ */
#contact {
    background: #f4f8fb;
    padding: 100px 48px 110px;
    position: relative;
    overflow: hidden;
}

/* Blob coral haut-gauche */
#contact::before {
    content: "";
    position: absolute;
    left: -160px;
    top: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 64, .08), transparent 68%);
    pointer-events: none;
}

/* Blob teal bas-droite */
#contact::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -100px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 196, 196, .09), transparent 65%);
    pointer-events: none;
}

/* Grille de fond */
.contact-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 196, 196, .032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 196, 196, .032) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.pp-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---- En-tête ---- */
.pp-contact-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.pp-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .25);
    margin-bottom: 18px;
}

.pp-contact-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(11, 196, 196, .4);
    animation: ctaPulse 2.2s infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(11, 196, 196, .35);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(11, 196, 196, 0);
    }
}

.pp-contact-badge-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal-dk);
}

.pp-contact-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -.022em;
    color: var(--dark);
    line-height: 1.04;
}

.pp-contact-title-accent {
    color: var(--teal);
    position: relative;
}

.pp-contact-subtitle {
    margin-top: 14px;
    font-size: .98rem;
    line-height: 1.72;
    color: var(--muted);
}

.pp-contact-subtitle a {
    color: var(--teal-dk);
    font-weight: 700;
    text-decoration: none;
}

.pp-contact-subtitle a:hover {
    text-decoration: underline;
}

/* ---- Grille principale ---- */
.pp-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    /* un peu plus d'air */
    align-items: start;
}

/* ============================================================
   FORMULAIRE
============================================================ */
.pp-contact-form {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(10, 22, 40, .08);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 20px 52px rgba(0, 0, 0, .07);
    overflow: hidden;
}

/* Barre colorée haut du form */
.pp-contact-form::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--yellow) 55%, var(--teal));
}

/* IMPORTANT: si tu n'as pas .pp-form-body dans le HTML, ce padding s'applique au form */
.pp-contact-form {
    padding: 24px 22px 20px;
}

/* Si tu utilises réellement un wrapper .pp-form-body, garde aussi ceci (sans conflit) */
.pp-form-body {
    padding: 0;
    /* évite double padding si présent */
}

/* Row 2 colonnes anti-débordement */
.pp-contact-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    /* FIX chevauchement */
    gap: 14px;
    align-items: start;
}

.pp-contact-field {
    margin-bottom: 14px;
    min-width: 0;
    /* FIX chevauchement */
}

.pp-contact-field label {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, .60);
    margin-bottom: 7px;
}

/* Inputs base */
.pp-contact-field input,
.pp-contact-field select,
.pp-contact-field textarea {
    width: 90%;
    max-width: 100%;
    min-width: 0;
    /* FIX chevauchement */
    background: rgba(244, 248, 251, .8);
    border: 1.5px solid rgba(10, 22, 40, .10);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: .94rem;
    color: var(--dark);
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.pp-contact-field input:focus,
.pp-contact-field select:focus,
.pp-contact-field textarea:focus {
    border-color: var(--teal);
    background: rgba(11, 196, 196, .05);
    box-shadow: 0 0 0 3px rgba(11, 196, 196, .12);
}

/* Champs readonly (postcode/city) */
.pp-contact-field input[readonly] {
    background: rgba(244, 248, 251, .5);
    color: rgba(10, 22, 40, .5);
    cursor: default;
    border-style: dashed;
}

.pp-contact-field input[readonly]:focus {
    border-color: rgba(10, 22, 40, .10);
    background: rgba(244, 248, 251, .5);
    box-shadow: none;
}

/* Select custom arrow */
.pp-select-wrap {
    position: relative;
    min-width: 0;
    /* FIX chevauchement */
}

.pp-select-wrap::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(10,22,40,.45)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.pp-select-wrap select {
    padding-right: 36px;
}

.pp-contact-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Helper text */
.pp-form-helper {
    margin-top: 6px;
    font-size: .82rem;
    color: rgba(59, 74, 90, .60);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.pp-form-helper::before {
    content: "";
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='rgba(59,74,90,.4)' stroke-width='1.5'/%3E%3Cpath d='M12 8v4' stroke='rgba(59,74,90,.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='16' r='.75' fill='rgba(59,74,90,.4)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.pp-form-helper.is-error {
    color: #b42318;
    font-weight: 600;
}

.pp-form-helper.is-error::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23b42318' stroke-width='1.5'/%3E%3Cpath d='M12 8v5' stroke='%23b42318' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='16.5' r='.75' fill='%23b42318'/%3E%3C/svg%3E");
}

/* ---- Autocomplete ---- */
.pp-address-autocomplete-wrapper {
    position: relative;
    min-width: 0;
    /* FIX chevauchement */
}

/* Spinner de chargement */
.pp-address-autocomplete-wrapper.is-loading::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    border: 2px solid rgba(10, 22, 40, .12);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: fieldSpin .7s linear infinite;
    pointer-events: none;
}

@keyframes fieldSpin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Liste des suggestions */
.pp-address-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    list-style: none;
    margin: 0;
    padding: 6px;
    background: var(--white);
    border: 1.5px solid rgba(11, 196, 196, .25);
    border-radius: 14px;
    box-shadow:
        0 4px 0 rgba(11, 196, 196, .08),
        0 20px 48px rgba(0, 0, 0, .12);
    display: none;
    z-index: 100;
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 196, 196, .3) transparent;
}

.pp-address-suggestions::-webkit-scrollbar {
    width: 4px;
}

.pp-address-suggestions::-webkit-scrollbar-thumb {
    background: rgba(11, 196, 196, .3);
    border-radius: 2px;
}

.pp-address-suggestions.is-visible {
    display: block;
}

.address-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    cursor: pointer;
    transition: background .14s;
}

.address-suggestion-item::before {
    content: "";
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(11, 196, 196, .08);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 13.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z' stroke='%230bc4c4' stroke-width='1.5'/%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Z' stroke='%230bc4c4' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    transition: background-color .14s;
}

.address-suggestion-item:hover,
.address-suggestion-item.is-highlighted {
    background: rgba(11, 196, 196, .08);
}

.address-suggestion-item:hover::before,
.address-suggestion-item.is-highlighted::before {
    background-color: rgba(11, 196, 196, .15);
}

.sug-texts {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.address-suggestion-main {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--dark);
    font-size: .875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-suggestion-extra {
    color: var(--muted);
    font-size: .78rem;
    margin-top: 1px;
}

.sug-dept {
    margin-left: auto;
    flex-shrink: 0;
    font-family: var(--font-head);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--teal-dk);
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .18);
    padding: 3px 7px;
    border-radius: 100px;
}

/* ---- Checkbox RGPD ---- */
.pp-contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 14px;
    font-size: .875rem;
    line-height: 1.55;
    color: var(--muted);
    cursor: pointer;
}

.pp-contact-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(10, 22, 40, .18);
    background: rgba(244, 248, 251, .8);
    margin-top: 1px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.pp-contact-checkbox input[type="checkbox"]:checked {
    background-color: var(--teal);
    border-color: var(--teal);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pp-contact-checkbox input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* ---- Boutons ---- */
.pp-contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .82rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}

.pp-contact-btn .pp-btn-ico {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-contact-btn .pp-btn-ico svg {
    width: 16px;
    height: 16px;
}

.pp-contact-btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(255, 95, 64, .22);
    flex: 1;
    justify-content: center;
    min-width: 220px;
}

.pp-contact-btn-primary:hover {
    background: var(--coral-d);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 95, 64, .30);
}

.pp-contact-btn-primary:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.pp-contact-btn-secondary {
    background: transparent;
    color: var(--dark);
    border-color: rgba(10, 22, 40, .14);
    min-width: 170px;
    justify-content: center;
}

.pp-contact-btn-secondary:hover {
    border-color: rgba(11, 196, 196, .40);
    background: rgba(11, 196, 196, .07);
    transform: translateY(-2px);
}

.pp-contact-privacy {
    margin-top: 10px;
    font-size: .8rem;
    color: rgba(59, 74, 90, .55);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.pp-contact-privacy::before {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L4 6v5.5C4 16.25 7.5 20.25 12 21.5c4.5-1.25 8-5.25 8-10V6L12 2Z' stroke='rgba(59,74,90,.4)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Feedback */
.pp-form-feedback {
    margin-top: 10px;
    font-size: .9rem;
    font-weight: 600;
    min-height: 1.4em;
    border-radius: 8px;
    padding: 0;
    transition: all .3s;
}

.pp-form-feedback.is-success {
    color: #027a48;
    background: rgba(2, 122, 72, .07);
    border: 1px solid rgba(2, 122, 72, .18);
    padding: 10px 14px;
}

.pp-form-feedback.is-error {
    color: #b42318;
    background: rgba(180, 35, 24, .06);
    border: 1px solid rgba(180, 35, 24, .16);
    padding: 10px 14px;
}

/* ============================================================
   ASIDE DROITE
============================================================ */
.pp-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Carte map */
.pp-map-card {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(10, 22, 40, .08);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 18px 48px rgba(0, 0, 0, .07);
    overflow: hidden;
    position: relative;
}

.pp-map-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
    z-index: 2;
}

.pp-map-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px 10px;
    border-bottom: 1px solid rgba(10, 22, 40, .06);
}

.pp-map-card-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-map-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px rgba(11, 196, 196, .15);
    animation: ctaPulse 2.4s infinite;
}

.pp-map-card-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .82rem;
    color: var(--dark);
}

.pp-map-badge {
    font-family: var(--font-head);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--teal-dk);
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .20);
    padding: 3px 9px;
    border-radius: 100px;
}

.pp-map {
    aspect-ratio: 16/10;
    width: 100%;
    background: rgba(244, 248, 251, .9);
    position: relative;
    overflow: hidden;
}

.pp-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.pp-map-caption {
    padding: 9px 14px 12px;
    font-size: .8rem;
    line-height: 1.55;
    color: rgba(59, 74, 90, .60);
    border-top: 1px solid rgba(10, 22, 40, .05);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.pp-map-caption::before {
    content: "";
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' stroke='rgba(59,74,90,.4)' stroke-width='1.5'/%3E%3Cpath d='M12 8v4' stroke='rgba(59,74,90,.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='16' r='.75' fill='rgba(59,74,90,.4)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Card info */
.pp-contact-info-card {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(10, 22, 40, .08);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 10px 28px rgba(0, 0, 0, .05);
    padding: 18px 16px;
    position: relative;
    overflow: hidden;
}

.pp-contact-info-card::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 196, 196, .10), transparent 70%);
    pointer-events: none;
}

.pp-contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(11, 196, 196, .10);
    border: 1px solid rgba(11, 196, 196, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pp-contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal-dk);
}

.pp-contact-info-card h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.pp-contact-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.pp-contact-bullets li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.4;
    min-width: 0;
}

.pp-contact-bullets li::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(11, 196, 196, .10);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10.5l3.5 3.5L15 7' stroke='%230bc4c4' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    border: 1px solid rgba(11, 196, 196, .20);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px) {
    #contact {
        padding: 80px 28px 90px;
    }

    .pp-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #contact {
        padding: 70px 18px 80px;
    }

    .pp-contact-row {
        grid-template-columns: 1fr;
    }

    .pp-contact-buttons {
        flex-direction: column;
    }

    .pp-contact-btn {
        justify-content: center;
        width: 100%;
    }
}


/* ============================================================
           SECTION TAG & TITLES
        ============================================================ */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(11, 196, 196, .1);
    border: 1px solid rgba(11, 196, 196, .3);
    border-radius: 50px;
    color: var(--teal);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    /* color: var(--white); */
}

.section-title em {
    color: var(--teal);
    font-style: normal;
}

.section-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    /* color: rgba(255, 255, 255, .95); */
}

.section-sub strong {
    /* color: var(--white); */
    font-weight: 600;
}

/* ============================================================
           FAQ SECTION
        ============================================================ */
#faq {
    background: var(--dark);
    padding: 100px 48px;
    position: relative;
    min-height: 100vh;
}

/* Gradient subtil en arrière-plan */
#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(11, 196, 196, .08) 0%, transparent 70%);
    pointer-events: none;
}

.section-title-faq {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.faq-inner {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    margin-bottom: 64px;
    text-align: center;
}

.faq-header .section-tag {
    margin-bottom: 16px;
}

.faq-header .section-title {
    margin-bottom: 20px;
}

.faq-header .section-sub {
    max-width: 720px;
    margin: 0 auto;
}

.section-sub-faq {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .95);
}

.section-sub-faq strong {
    color: var(--white);
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item - design amélioré */
.faq-item {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s var(--ease);
    position: relative;
}

/* Effet de lueur au hover */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 196, 196, .06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.faq-item:hover {
    border-color: rgba(11, 196, 196, .25);
    background: rgba(11, 196, 196, .04);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 196, 196, .08);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.is-open {
    border-color: rgba(11, 196, 196, .35);
    background: rgba(11, 196, 196, .05);
    box-shadow: 0 12px 32px rgba(11, 196, 196, .12);
}

/* Question button - meilleure lisibilité */
.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.4;
    transition: color .25s ease;
    position: relative;
}

.faq-q:hover {
    color: var(--teal);
}

.faq-q:focus-visible {
    outline: 2px solid rgba(11, 196, 196, .6);
    outline-offset: 4px;
    border-radius: 12px;
}

/* Icon - animation améliorée */
.faq-q-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(11, 196, 196, .2);
    background: rgba(11, 196, 196, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    position: relative;
}

.faq-q:hover .faq-q-icon {
    border-color: rgba(11, 196, 196, .4);
    background: rgba(11, 196, 196, .12);
    transform: scale(1.08);
}

.faq-q-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s var(--ease);
}

/* Answer wrapper - transition fluide */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease),
        padding .4s var(--ease),
        opacity .3s ease;
    padding: 0 28px;
    opacity: 0;
}

.faq-a p {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    margin-bottom: 24px;
    font-size: .98rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);
}

.faq-a p strong {
    color: var(--white);
    font-weight: 600;
}

/* Open state - animations coordonnées */
.faq-item.is-open .faq-a {
    max-height: 600px;
    padding: 0 28px 16px;
    opacity: 1;
}

.faq-item.is-open .faq-q {
    color: var(--teal);
}

.faq-item.is-open .faq-q-icon {
    background: var(--teal);
    border-color: var(--teal);
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(11, 196, 196, .25);
}

.faq-item.is-open .faq-q-icon svg {
    stroke: var(--dark);
    transform: scale(1.1);
}

/* Animation d'entrée pour les items */
.faq-item {
    animation: fadeInUp .5s ease backwards;
}

.faq-item:nth-child(1) {
    animation-delay: .05s;
}

.faq-item:nth-child(2) {
    animation-delay: .1s;
}

.faq-item:nth-child(3) {
    animation-delay: .15s;
}

.faq-item:nth-child(4) {
    animation-delay: .2s;
}

.faq-item:nth-child(5) {
    animation-delay: .25s;
}

.faq-item:nth-child(6) {
    animation-delay: .3s;
}

.faq-item:nth-child(7) {
    animation-delay: .35s;
}

.faq-item:nth-child(8) {
    animation-delay: .4s;
}

.faq-item:nth-child(9) {
    animation-delay: .45s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicateur de scroll pour longues réponses */
.faq-a p::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal) 0%, transparent 100%);
    margin-top: 16px;
    opacity: .4;
}

/* ============================================================
           RESPONSIVE
        ============================================================ */

/* Tablette */
@media (max-width: 900px) {
    #faq {
        padding: 80px 32px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .faq-header {
        margin-bottom: 52px;
    }

    .faq-q {
        font-size: 1.02rem;
        padding: 22px 24px;
    }

    .faq-a {
        padding: 0 24px;
    }

    .faq-item.is-open .faq-a {
        padding: 0 24px 14px;
    }
}

/* Mobile */
@media (max-width: 520px) {
    #faq {
        padding: 70px 20px;
    }

    #faq::before {
        height: 200px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-sub {
        font-size: .95rem;
    }

    .faq-header {
        margin-bottom: 48px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-q {
        padding: 20px 20px;
        font-size: .98rem;
        gap: 16px;
    }

    .faq-q-icon {
        width: 34px;
        height: 34px;
    }

    .faq-q-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-a {
        padding: 0 20px;
    }

    .faq-a p {
        font-size: .95rem;
        line-height: 1.85;
        padding-top: 16px;
        margin-bottom: 20px;
    }

    .faq-item.is-open .faq-a {
        padding: 0 20px 12px;
    }

    .faq-item:hover {
        transform: none;
    }
}

/* Touch devices - amélioration de la zone tactile */
@media (hover: none) {
    .faq-q {
        padding: 26px 22px;
    }

    .faq-item:hover {
        transform: none;
        border-color: rgba(255, 255, 255, .08);
        background: rgba(255, 255, 255, .02);
    }

    .faq-item:hover::before {
        opacity: 0;
    }

    .faq-item:active {
        transform: scale(.99);
    }
}

/* Accessibilité - réduction du mouvement */
@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-q,
    .faq-q-icon,
    .faq-q-icon svg,
    .faq-a {
        animation: none !important;
        transition: none !important;
    }

    .faq-item:hover {
        transform: none;
    }

    .faq-q:hover .faq-q-icon {
        transform: none;
    }

    .faq-item.is-open .faq-q-icon {
        transform: rotate(45deg);
    }
}

/* ============================================================
   FOOTER
============================================================ */
footer#footer {
    background: linear-gradient(180deg, #060E1E 0%, #0a0e1a 100%);
    border-top: 1px solid rgba(11, 196, 196, .15);
    padding: 80px 48px 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

footer#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(11, 196, 196, .4) 50%, transparent 100%);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* ============================================================
   GRID TOP — 4 colonnes desktop
============================================================ */
.footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ============================================================
   BRAND
============================================================ */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 22px;
    transition: transform .3s var(--ease);
}

.footer-logo:hover {
    transform: translateX(4px);
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 196, 196, .18) 0%, rgba(11, 196, 196, .08) 100%);
    border: 1.5px solid rgba(11, 196, 196, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    box-shadow: 0 4px 16px rgba(11, 196, 196, .15);
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

.footer-logo:hover .footer-logo-mark {
    background: linear-gradient(135deg, rgba(11, 196, 196, .25) 0%, rgba(11, 196, 196, .12) 100%);
    box-shadow: 0 6px 20px rgba(11, 196, 196, .25);
}

.footer-logo-mark svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.footer-logo-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: .01em;
    line-height: 1.2;
    color: var(--white);
}

.footer-logo-text span {
    display: block;
    margin-top: 4px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(11, 196, 196, .85);
}

.footer-desc {
    font-size: .95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 26px;
    max-width: 100%;
}

.footer-desc strong {
    color: var(--white);
    font-weight: 700;
}

/* ============================================================
   CTA BUTTONS
============================================================ */
.footer-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    width: 80%;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .8rem;
    border: 2px solid transparent;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: left .5s ease;
    z-index: -1;
}

.footer-cta:hover::before {
    left: 100%;
}

.footer-cta .ico {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}

.footer-cta:hover .ico {
    transform: scale(1.15);
}

.footer-cta .ico svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-cta-primary {
    background: linear-gradient(135deg, var(--teal) 0%, #09b5b5 100%);
    color: var(--dark);
    box-shadow: 0 12px 32px rgba(11, 196, 196, .28);
    border-color: var(--teal);
}

.footer-cta-primary:hover {
    background: linear-gradient(135deg, #09b5b5 0%, var(--teal-d) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(11, 196, 196, .38);
}

.footer-cta-secondary {
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    border-color: rgba(255, 255, 255, .15);
}

.footer-cta-secondary:hover {
    border-color: rgba(11, 196, 196, .45);
    background: rgba(11, 196, 196, .12);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 196, 196, .15);
}

/* ============================================================
   NAP
============================================================ */
.footer-nap {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
}

.footer-nap li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-nap strong {
    color: var(--white);
    font-weight: 700;
    min-width: 80px;
    flex-shrink: 0;
}

.footer-nap a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
    position: relative;
    word-break: break-word;
}

.footer-nap a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width .3s ease;
}

.footer-nap a:hover::after {
    width: 100%;
}

/* ============================================================
   SOCIAL LINK (Facebook)
============================================================ */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(24, 119, 242, .15);
    border: 1.5px solid rgba(24, 119, 242, .35);
    color: #5b9aff;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.footer-social-link:hover .footer-social-icon {
    background: rgba(24, 119, 242, .28);
    border-color: rgba(24, 119, 242, .6);
    box-shadow: 0 4px 14px rgba(24, 119, 242, .3);
    transform: translateY(-2px);
    color: #7db3ff;
}

.footer-social-link {
    color: #5b9aff !important;
}

.footer-social-link::after {
    background: #5b9aff !important;
}

.footer-social-link:hover {
    color: #7db3ff !important;
}

/* ============================================================
   COLONNES
============================================================ */
.footer-col-title {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal) 0%, transparent 100%);
}

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

.footer-col a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .92rem;
    line-height: 1.6;
    transition: all .25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-col a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--teal);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width .3s ease;
}

.footer-col a:hover {
    color: var(--teal);
    transform: translateX(4px);
}

.footer-col a:hover::before {
    width: 100%;
}

/* ============================================================
   FOOTER BOTTOM
============================================================ */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255, 255, 255, .55);
    font-size: .86rem;
    letter-spacing: .02em;
    min-width: 0;
    flex-shrink: 1;
}

/* ============================================================
   CRÉDIT DÉVELOPPEUR
============================================================ */
.footer-credit {
    font-size: .82rem;
    color: rgba(255, 255, 255, .38);
    letter-spacing: .02em;
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-credit a {
    color: rgba(11, 196, 196, .6);
    text-decoration: none;
    font-weight: 600;
    transition: color .25s ease;
    position: relative;
}

.footer-credit a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width .3s ease;
}

.footer-credit a:hover {
    color: var(--teal);
}

.footer-credit a:hover::after {
    width: 100%;
}

/* ============================================================
   LIENS LÉGAUX
============================================================ */
.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, .55);
    font-size: .86rem;
    text-decoration: none;
    transition: color .25s ease;
    position: relative;
    white-space: nowrap;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width .3s ease;
}

.footer-legal a:hover {
    color: var(--teal);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ---- Tablette large ---- */
@media (max-width: 1024px) {
    footer#footer {
        padding: 70px 32px 28px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding-bottom: 44px;
    }
}

/* ---- Tablette moyenne ---- */
@media (max-width: 768px) {
    footer#footer {
        padding: 60px 24px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-bottom: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-ctas {
        flex-direction: row;
    }
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
    footer#footer {
        padding: 60px 20px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-ctas {
        flex-direction: column;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }

    .footer-col ul {
        gap: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-credit {
        white-space: normal;
    }

    .footer-legal {
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-nap strong {
        min-width: 70px;
    }
}

/* ---- Très petit mobile ---- */
@media (max-width: 380px) {
    footer#footer {
        padding: 48px 16px 20px;
    }

    .footer-cta {
        font-size: .75rem;
        padding: 12px 16px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

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

/* ============================================================
   FLOATING CTA (Call + Top) — style site
============================================================ */
.float-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 850;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* base */
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(10, 22, 40, .65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
    transition: transform .18s var(--ease), box-shadow .18s, border-color .18s, background .18s, opacity .18s;
    cursor: none;
}

.float-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Call (coral) */
.float-btn.call {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .18), transparent 60%),
        linear-gradient(145deg, rgba(255, 95, 64, .95), rgba(224, 64, 32, .95));
    border-color: rgba(255, 95, 64, .45);
    box-shadow: 0 16px 46px rgba(255, 95, 64, .24), 0 18px 44px rgba(0, 0, 0, .28);
}

/* Top (teal) */
.float-btn.top {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), transparent 60%),
        linear-gradient(145deg, rgba(11, 196, 196, .92), rgba(8, 160, 160, .92));
    border-color: rgba(11, 196, 196, .42);
    box-shadow: 0 16px 46px rgba(11, 196, 196, .20), 0 18px 44px rgba(0, 0, 0, .28);
}

/* Hover / focus */
.float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .34);
}

.float-btn:focus-visible {
    outline: 2px solid rgba(245, 195, 0, .75);
    outline-offset: 3px;
}

/* petit halo discret */
.float-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 195, 0, .12), transparent 60%);
    opacity: 0;
    transition: opacity .18s;
    pointer-events: none;
}

.float-btn:hover::after {
    opacity: 1;
}

/* “Top” caché au départ, apparaît après scroll */
.float-btn.top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
}

.float-cta.show-top .float-btn.top {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Accessibilité (texte invisible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 520px) {
    .float-cta {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 54px;
        height: 54px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .float-btn, .float-btn::after {
        transition: none !important;
    }
}

/* ============================================================
   legal.css — Feuille de style mutualisée (thème CLAIR)
   Couvre : mentions-legales, politique-confidentialite, cgv, cgu
   Dépend de styles.css (variables CSS du site principal)
============================================================ */

/* ============================================================
   LAYOUT PRINCIPAL
============================================================ */
.legal-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 48px 120px;
    color: #1a1f2e;
}

/* ============================================================
   FIL D'ARIANE
============================================================ */
.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: #8a93a8;
    margin-bottom: 40px;
    letter-spacing: .04em;
}

.legal-breadcrumb a {
    color: var(--teal, #0bc4c4);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s ease;
}

.legal-breadcrumb a:hover {
    color: #089b9b;
}

.legal-breadcrumb span[aria-current="page"] {
    color: #4a5168;
}

/* ============================================================
   TITRE H1
============================================================ */
.legal-title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #0d1220;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 28px;
}

.legal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--teal, #0bc4c4), transparent);
}

/* ============================================================
   INTRO (chapô optionnel sous le H1)
============================================================ */
.legal-intro {
    font-size: 1rem;
    line-height: 1.9;
    color: #4a5168;
    margin-bottom: 56px;
    padding-left: 18px;
    border-left: 3px solid rgba(11, 196, 196, .45);
}

.legal-intro strong {
    color: #1a1f2e;
    font-weight: 600;
}

/* ============================================================
   SECTIONS
============================================================ */
.legal-section {
    margin-bottom: 28px;
    padding: 36px 40px;
    background: #ffffff;
    border: 1px solid #e4e8f0;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.legal-section:hover {
    border-color: rgba(11, 196, 196, .4);
    box-shadow: 0 6px 24px rgba(11, 196, 196, .08);
}

/* Trait décoratif gauche au survol */
.legal-section::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--teal, #0bc4c4), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}

.legal-section:hover::before {
    opacity: 1;
}

/* ============================================================
   TITRES H2 avec numérotation
============================================================ */
.legal-section h2 {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: .01em;
    color: #0d1220;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.legal-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 8px;
    background: rgba(11, 196, 196, .1);
    border: 1.5px solid rgba(11, 196, 196, .3);
    color: #089b9b;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    flex-shrink: 0;
}

/* ============================================================
   PARAGRAPHES
============================================================ */
.legal-section p {
    font-size: .96rem;
    line-height: 1.85;
    color: #3d4460;
    margin-bottom: 14px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #1a1f2e;
    font-weight: 600;
}

/* ============================================================
   LIENS DANS LES SECTIONS
============================================================ */
.legal-section a {
    color: #089b9b;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color .2s ease;
}

.legal-section a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal, #0bc4c4);
    transition: width .3s ease;
}

.legal-section a:hover {
    color: var(--teal, #0bc4c4);
}

.legal-section a:hover::after {
    width: 100%;
}

/* ============================================================
   LISTES (pour CGV/CGU notamment)
============================================================ */
.legal-section ul,
.legal-section ol {
    padding-left: 20px;
    margin: 12px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: .96rem;
    line-height: 1.75;
    color: #3d4460;
}

.legal-section ul li::marker {
    color: var(--teal, #0bc4c4);
}

.legal-section ol li::marker {
    color: var(--teal, #0bc4c4);
    font-weight: 700;
}

/* ============================================================
   TABLEAU (pour CGV/tarifs notamment)
============================================================ */
.legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: 10px;
    border: 1px solid #e4e8f0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.legal-table th {
    background: rgba(11, 196, 196, .07);
    color: #089b9b;
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(11, 196, 196, .2);
}

.legal-table td {
    padding: 12px 18px;
    color: #3d4460;
    border-bottom: 1px solid #f0f2f7;
    vertical-align: top;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table tr:hover td {
    background: #f8fafc;
}

/* ============================================================
   BOUTON RETOUR ACCUEIL
============================================================ */
.legal-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 24px;
    border-radius: 12px;
    background: #f4f6fb;
    border: 1.5px solid #dde2ef;
    color: #3d4460;
    text-decoration: none;
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: all .3s ease;
}

.legal-btn-home svg {
    transition: transform .3s ease;
    flex-shrink: 0;
    stroke: currentColor;
}

.legal-btn-home:hover {
    background: rgba(11, 196, 196, .08);
    border-color: rgba(11, 196, 196, .45);
    color: #089b9b;
    transform: translateX(-4px);
}

.legal-btn-home:hover svg {
    transform: translateX(-3px);
}

/* ============================================================
   BADGE DATE DE MISE À JOUR (optionnel)
   Usage : <span class="legal-update">Mis à jour le 01/01/2025</span>
============================================================ */
.legal-update {
    display: inline-block;
    margin-bottom: 48px;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(11, 196, 196, .08);
    border: 1px solid rgba(11, 196, 196, .25);
    color: #089b9b;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 60px 28px 80px;
    }

    .legal-section {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .legal-wrapper {
        padding: 48px 20px 64px;
    }

    .legal-section {
        padding: 22px 18px;
    }

    .legal-section h2 {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .legal-btn-home {
        width: 100%;
        justify-content: center;
    }
}