/* =====================================================
   SOS ORDINATEUR — DÉPANNAGE HOME — DESIGN CRÉATIF
   Palette rassurante + professionnelle, animations sobres
   Préfixe .dp-* (dépannage)
   ===================================================== */

:root {
    --dp-navy:   #0a1f44;
    --dp-navy-2: #0f2a5c;
    --dp-blue:   #1268dc;
    --dp-blue-2: #3b82f6;
    --dp-cyan:   #06b6d4;
    --dp-gold:   #f9a825;
    --dp-gold-2: #ffc24d;
    --dp-green:  #10b981;
    --dp-coral:  #ff7a59;
    --dp-cream:  #fdf9f3;
    --dp-ink:    #0a1f44;
    --dp-muted:  #5a6a85;
    --dp-border: #e6eaf2;
}

/* ==========================================================
   HERO .dp-hero
   ========================================================== */
.dp-hero {
    position: relative;
    /* Le body a un padding-top de 132px pour compenser le header fixe.
       Le hero doit donc valoir 100vh MOINS cette hauteur pour remplir pile l'écran visible. */
    min-height: calc(100vh - 132px);
    min-height: calc(100dvh - 132px);
    padding: 40px 20px 60px;
    overflow: hidden;
    background: #05122e;
    color: #fff;
    isolation: isolate;
    display: flex;
    align-items: center;
}

/* Mesh gradient animé — navy/blue/cyan/gold, atténué */
.dp-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(18,104,220,0.28) 0%, transparent 45%),
        radial-gradient(circle at 82% 18%, rgba(6,182,212,0.22) 0%, transparent 42%),
        radial-gradient(circle at 72% 78%, rgba(249,168,37,0.16) 0%, transparent 40%),
        radial-gradient(circle at 24% 82%, rgba(16,185,129,0.12) 0%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(59,130,246,0.14) 0%, transparent 58%);
    filter: blur(50px);
    animation: dpMeshFlow 30s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes dpMeshFlow {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    50%  { transform: translate(2%, -2%) rotate(4deg) scale(1.06); }
    100% { transform: translate(-2%, 2%) rotate(-3deg) scale(1.02); }
}

/* Grille circuit imprimé subtile */
.dp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
    pointer-events: none;
}

/* Blobs flottants (atténués) */
.dp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    animation: dpFloat 22s ease-in-out infinite alternate;
}
.dp-blob--1 { top: 10%; left: 4%; width: 280px; height: 280px; background: #1268dc; }
.dp-blob--2 { bottom: 8%; right: 4%; width: 340px; height: 340px; background: #06b6d4; animation-delay: -5s; animation-duration: 26s; }
.dp-blob--3 { top: 55%; left: 40%; width: 200px; height: 200px; background: #f9a825; opacity: 0.12; animation-delay: -10s; animation-duration: 30s; }

@keyframes dpFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(45px, -30px) scale(1.1); }
}

/* Étincelles / points lumineux (diagnostic) */
.dp-sparks { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dp-spark {
    position: absolute;
    width: 3px; height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px rgba(255,255,255,0.6);
    opacity: 0;
    animation: dpTwinkle 4.5s ease-in-out infinite;
}
.dp-spark--gold { box-shadow: 0 0 10px #f9a825, 0 0 22px rgba(249,168,37,0.7); background: #ffd26a; }
.dp-spark--cyan { box-shadow: 0 0 10px #06b6d4, 0 0 22px rgba(6,182,212,0.7); background: #7ce6f5; }
.dp-spark--green { box-shadow: 0 0 10px #10b981, 0 0 22px rgba(16,185,129,0.7); background: #6ee7b7; }
@keyframes dpTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50%      { opacity: 1; transform: scale(1.15); }
}

/* ========== Container hero split ========== */
.dp-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.dp-hero-left { text-align: left; }

/* Eyebrow "Technicien dispo" — texte simple, pas un bouton */
.dp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #6ee7b7;
    margin-bottom: 22px;
    animation: dpFadeInUp 0.8s ease-out both;
}
.dp-hero-eyebrow .dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: dpPulseDot 2s infinite;
}
@keyframes dpPulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* H1 principal */
.dp-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.1rem, 4.8vw, 3.9rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.3px;
    margin: 0 0 22px;
    color: #fff;
    animation: dpFadeInUp 0.9s ease-out 0.1s both;
}
.dp-hero-title .hl {
    background: linear-gradient(135deg, #f9a825 0%, #ff7a59 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: dpGradShift 7s ease infinite;
    display: inline-block;
}
@keyframes dpGradShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typewriter "PC qui ne démarre plus ?" */
.dp-hero-typed-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 2.8em;        /* augmenté pour matcher la hauteur réelle du texte */
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    animation: dpFadeInUp 1s ease-out 0.25s both;
    contain: layout;
}
.dp-hero-typed {
    display: inline-block;
    min-width: 16ch;
    min-height: 1.4em;        /* le typed garde sa hauteur même vide */
    line-height: 1.4;
}
.dp-hero-typed-label {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}
.dp-hero-typed {
    color: #ffd26a;
    border-right: 3px solid #ffd26a;
    padding-right: 5px;
    animation: dpCaret 0.8s steps(2) infinite;
    white-space: nowrap;
}
@keyframes dpCaret { 50% { border-right-color: transparent; } }

/* Description */
.dp-hero-desc {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 0 32px;
    animation: dpFadeInUp 1.05s ease-out 0.35s both;
}
.dp-hero-desc strong { color: #fff; font-weight: 700; }

/* CTAs */
.dp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
    animation: dpFadeInUp 1.1s ease-out 0.45s both;
}
.dp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 28px;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    will-change: transform;
}
.dp-btn-tel {
    background: linear-gradient(135deg, #f9a825 0%, #ffc24d 100%);
    color: #0a1f44;
    box-shadow: 0 14px 32px rgba(249,168,37,0.42), 0 2px 0 rgba(0,0,0,0.08) inset;
    position: relative;
    overflow: hidden;
}
.dp-btn-tel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}
.dp-btn-tel:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(249,168,37,0.55); }
.dp-btn-tel:hover::before { transform: translateX(100%); }
.dp-btn-tel svg { width: 20px; height: 20px; }

/* Lien hero (non-CTA) — style lien, pas bouton */
.dp-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 2px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
    align-self: center;
}
.dp-hero-link:hover,
.dp-hero-link:focus-visible {
    color: #ffd26a;
    border-bottom-color: #ffd26a;
}
.dp-hero-link-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}
.dp-hero-link:hover .dp-hero-link-arrow { transform: translateX(5px); }

/* Stats row */
.dp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 22px;
    animation: dpFadeInUp 1.2s ease-out 0.55s both;
}
.dp-hero-stat {
    text-align: center;
    padding: 4px 0;
    position: relative;
}
.dp-hero-stat + .dp-hero-stat::before {
    content: "";
    position: absolute;
    left: -7px; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.dp-hero-stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.1vw, 1.65rem);
    font-weight: 900;
    color: #ffd26a;
    line-height: 1;
    letter-spacing: -0.5px;
}
.dp-hero-stat-lbl {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    line-height: 1.3;
}

/* Mention SAP crédit d'impôt — texte simple, pas un bouton */
.dp-hero-sap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    animation: dpFadeInUp 1.25s ease-out 0.65s both;
}
.dp-hero-sap strong { color: #6ee7b7; font-weight: 800; }
.dp-hero-sap-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
}

/* ========== Right column : photo + floating cards ========== */
.dp-hero-right {
    position: relative;
    height: 100%;
    min-height: 520px;
    animation: dpFadeInUp 1s ease-out 0.3s both;
}
.dp-hero-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 580px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
    transform: rotate(-1.5deg);
    transition: transform 0.6s ease;
}
.dp-hero-photo-wrap:hover { transform: rotate(0deg) scale(1.01); }
.dp-hero-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.dp-hero-photo-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,31,68,0) 50%, rgba(10,31,68,0.75) 100%);
    pointer-events: none;
}
.dp-hero-photo-cap {
    position: absolute;
    left: 20px; bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dp-hero-photo-cap::before {
    content: "";
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: dpPulseDot 2s infinite;
}

/* Floating cards au-dessus de la photo */
.dp-hero-float {
    position: absolute;
    background: #fff;
    color: #0a1f44;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    z-index: 5;
    animation: dpFloatCard 6s ease-in-out infinite alternate;
}
.dp-hero-float--1 {
    top: 8%;
    left: -38px;
    animation-delay: 0s;
}
.dp-hero-float--2 {
    display: none !important;        /* carte "4,8/5 Google" masquée — déjà présente dans les stats du hero */
    bottom: 14%;
    right: -32px;
    animation-delay: -3s;
}
@keyframes dpFloatCard {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.dp-hero-float-ico {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.dp-hero-float--1 .dp-hero-float-ico { background: linear-gradient(135deg, #10b981, #059669); }
.dp-hero-float--2 .dp-hero-float-ico { background: linear-gradient(135deg, #f9a825, #ff7a59); }
.dp-hero-float-txt strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.2;
}
.dp-hero-float-txt span {
    display: block;
    font-size: 0.75rem;
    color: #5a6a85;
    margin-top: 2px;
}
.dp-hero-float-stars {
    display: flex;
    gap: 1px;
    color: #f9a825;
    font-size: 0.9rem;
    line-height: 1;
    margin-top: 3px;
}

/* Animations génériques */
@keyframes dpFadeInUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    .dp-hero-wrap { grid-template-columns: 1fr; gap: 48px; max-width: 720px; }
    .dp-hero-left { text-align: center; }
    .dp-hero-desc { margin-left: auto; margin-right: auto; }
    .dp-hero-ctas { justify-content: center; }
    .dp-hero-eyebrow { margin-left: auto; margin-right: auto; display: inline-flex; }
    .dp-hero-typed-wrap { justify-content: center; flex-wrap: wrap; }
    .dp-hero-right { min-height: auto; max-width: 460px; margin: 0 auto; }
    .dp-hero-photo-wrap { aspect-ratio: 4/3; max-height: 420px; }
    .dp-hero-float--1 { left: -14px; top: -18px; }
    .dp-hero-float--2 { right: -14px; bottom: -18px; }
}

@media (max-width: 1024px) {
    .dp-hero {
        /* body padding-top à ce breakpoint = 120px */
        min-height: calc(100vh - 120px);
        min-height: calc(100dvh - 120px);
    }
}

@media (max-width: 900px) {
    .dp-hero {
        /* body padding-top = 70px (top bar uniquement, navbar masquée) */
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
        padding: 32px 18px 48px;
    }
    .dp-hero-title { font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
    .dp-hero-typed-wrap {
        font-size: 1rem;
        flex-direction: column;
        gap: 4px;
        min-height: 3.6em;
        width: 100%;                /* Anti-CLS horizontal : prend toute la largeur dispo, ne bouge plus */
        align-items: center;
        text-align: center;
        display: flex;
    }
    .dp-hero-typed {
        border-right-width: 2px;
        min-width: 0;
        min-height: 1.5em;
        max-width: 100%;
    }
    .dp-hero-stats { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 16px 10px; }
    .dp-hero-stat + .dp-hero-stat::before { display: none; }
    .dp-btn { padding: 15px 22px; font-size: 0.95rem; }
    .dp-hero-float { min-width: 170px; padding: 11px 14px; }
    .dp-hero-float--1 { left: 8px; top: -14px; }
    .dp-hero-float--2 { right: 8px; bottom: -14px; }
    .dp-hero-float-ico { width: 36px; height: 36px; }
}

@media (max-width: 640px) {
    .dp-hero {
        /* body padding-top = 64px */
        min-height: calc(100vh - 64px);
        min-height: calc(100dvh - 64px);
        padding: 28px 14px 44px;
    }
}

@media (max-width: 768px) {
    /* Cartes flottantes masquées sur mobile : elles couvrent la photo et le texte */
    .dp-hero-float,
    .dp-hero-float--1,
    .dp-hero-float--2 {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .dp-hero-title { font-size: 1.75rem; letter-spacing: -0.8px; }
    .dp-hero-ctas { flex-direction: column; align-items: stretch; }
    .dp-btn { justify-content: center; width: 100%; }
    .dp-hero-photo-wrap { max-height: 360px; transform: none; }
}

/* Accessibilité — reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dp-hero::before,
    .dp-blob,
    .dp-spark,
    .dp-hero-title .hl,
    .dp-hero-eyebrow .dot,
    .dp-hero-float,
    .dp-hero-photo-cap::before { animation: none !important; }
    .dp-hero-typed { border-right: none; }
    .dp-hero-eyebrow, .dp-hero-title, .dp-hero-typed-wrap,
    .dp-hero-desc, .dp-hero-ctas, .dp-hero-stats, .dp-hero-sap,
    .dp-hero-right { animation: none !important; opacity: 1; transform: none; }
}

/* ==========================================================
   SERVICES .dp-services — 8 cartes color-coded par catégorie
   ========================================================== */
.dp-services {
    position: relative;
    padding: 100px 20px;
    background: #fdfcfa;
    overflow: hidden;
}
.dp-services::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(18,104,220,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.dp-services::after {
    content: "";
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,168,37,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dp-services-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header de section */
.dp-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.dp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #1268dc;
    margin-bottom: 14px;
}
.dp-eyebrow::before {
    content: "";
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #1268dc, #06b6d4);
    border-radius: 2px;
}
.dp-eyebrow::after {
    content: "";
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #06b6d4, #1268dc);
    border-radius: 2px;
}

.dp-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #0a1f44;
    margin: 0 0 16px;
}
.dp-h2 .hl {
    background: linear-gradient(135deg, #1268dc, #06b6d4 50%, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dp-sub {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: #5a6a85;
    line-height: 1.65;
    margin: 0;
}

/* Grille — 5 services */
.dp-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Carte service */
.dp-svc {
    --svc-c: #1268dc;
    --svc-c-2: #3b82f6;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 26px 26px;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
    isolation: isolate;
}
/* Bande colorée en haut (fine au repos, large au hover) */
.dp-svc::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--svc-c), var(--svc-c-2));
    transition: height 0.35s cubic-bezier(.2,.8,.2,1);
}
/* Halo coloré qui apparaît en arrière-plan au hover */
.dp-svc::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 220px; height: 220px;
    background: radial-gradient(circle, var(--svc-c) 0%, transparent 70%);
    opacity: 0;
    transform: translate(40%, -40%);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}
.dp-svc:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(10,31,68,0.10),
                0 0 0 1px color-mix(in srgb, var(--svc-c) 22%, transparent);
}
.dp-svc:hover::before { height: 6px; }
.dp-svc:hover::after { opacity: 0.08; }

/* Icône bubble */
.dp-svc-ico {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
    background: color-mix(in srgb, var(--svc-c) 12%, transparent);
    color: var(--svc-c);
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.dp-svc-ico svg { width: 28px; height: 28px; }
.dp-svc:hover .dp-svc-ico {
    background: linear-gradient(135deg, var(--svc-c), var(--svc-c-2));
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
}

.dp-svc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1f44;
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}
.dp-svc-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #5a6a85;
    margin: 0 0 18px;
    flex: 1;
}
.dp-svc-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--svc-c);
    letter-spacing: 0.2px;
    transition: gap 0.25s ease;
}
.dp-svc-more::after {
    content: "→";
    display: inline-block;
    transition: transform 0.25s ease;
}
.dp-svc:hover .dp-svc-more { gap: 10px; }
.dp-svc:hover .dp-svc-more::after { transform: translateX(4px); }

/* Variations couleur par catégorie */
.dp-svc--blue    { --svc-c: #1268dc; --svc-c-2: #3b82f6; }
.dp-svc--cyan    { --svc-c: #06b6d4; --svc-c-2: #22d3ee; }
.dp-svc--coral   { --svc-c: #ff7a59; --svc-c-2: #fb923c; }
.dp-svc--gold    { --svc-c: #e69500; --svc-c-2: #f9a825; }
.dp-svc--emerald { --svc-c: #10b981; --svc-c-2: #34d399; }
.dp-svc--navy    { --svc-c: #1e40af; --svc-c-2: #3b82f6; }
.dp-svc--violet  { --svc-c: #7c3aed; --svc-c-2: #a78bfa; }

/* Badge "Le plus demandé" sur une carte */
.dp-svc-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 4px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f9a825, #ff7a59);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(249,168,37,0.35);
    z-index: 2;
}

/* Ligne de réassurance sous la grille */
.dp-svc-reassure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 26px;
    margin-top: 42px;
    padding: 18px 24px;
    background: #fff;
    border: 1px dashed #e6eaf2;
    border-radius: 999px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.dp-svc-reassure-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0a1f44;
}
.dp-svc-reassure-item svg {
    color: #10b981;
    flex-shrink: 0;
}
.dp-svc-reassure-sep {
    width: 1px; height: 16px;
    background: #e6eaf2;
}

/* Responsive — 5 → 3 → 2 → 1 */
@media (max-width: 1300px) {
    .dp-services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .dp-services { padding: 80px 18px; }
    .dp-services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .dp-section-head { margin-bottom: 42px; }
    .dp-svc-reassure-sep { display: none; }
}
@media (max-width: 560px) {
    .dp-services-grid { grid-template-columns: 1fr; }
    .dp-svc { padding: 24px 22px 22px; }
    .dp-svc-reassure { padding: 16px 18px; border-radius: 20px; gap: 8px 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .dp-svc, .dp-svc::before, .dp-svc::after,
    .dp-svc-ico, .dp-svc-more::after { transition: none !important; animation: none !important; }
}

/* ==========================================================
   PROCESS .dp-process — timeline 1-2-3 connectée
   ========================================================== */
.dp-process {
    position: relative;
    padding: 100px 20px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(18,104,220,0.05) 0%, transparent 60%),
        linear-gradient(180deg, #f4f7fd 0%, #ffffff 100%);
    overflow: hidden;
}
/* Grille subtile en fond */
.dp-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10,31,68,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,31,68,0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}

.dp-process-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline : grille 3 colonnes + connecteur en arrière */
.dp-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Ligne connectrice animée (bleu → doré → émeraude) */
.dp-timeline::before {
    content: "";
    position: absolute;
    top: 52px;   /* aligné au centre des bulles de 104px */
    left: 16%;
    right: 16%;
    height: 4px;
    background: linear-gradient(90deg, #1268dc 0%, #f9a825 50%, #10b981 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    z-index: 0;
    opacity: 0.85;
    animation: dpTimelineShimmer 5s ease-in-out infinite;
}
@keyframes dpTimelineShimmer {
    0%   { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}
/* Points de scansion sur la ligne */
.dp-timeline::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 16%;
    right: 16%;
    height: 8px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1.5px, transparent 2px);
    background-size: 14px 8px;
    background-repeat: repeat-x;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

/* Une étape */
.dp-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Bulle numéro — 3 couleurs selon étape */
.dp-step-bubble {
    position: relative;
    width: 104px; height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 0 0 6px #fff,
        0 0 0 8px currentColor,
        0 18px 40px rgba(10,31,68,0.12);
    color: var(--step-c, #1268dc);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    z-index: 3;
}
.dp-step-bubble::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, currentColor 30%, transparent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.dp-step-bubble::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    transform: scale(1);
    animation: dpRipple 3s ease-out infinite;
    animation-delay: var(--step-delay, 0s);
    pointer-events: none;
}
@keyframes dpRipple {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0;   transform: scale(1.6); }
}

.dp-step:hover .dp-step-bubble { transform: translateY(-6px) scale(1.04); }
.dp-step:hover .dp-step-bubble::before { opacity: 1; }

/* Carte contenu sous la bulle */
.dp-step-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    padding: 26px 24px 24px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 20px rgba(10,31,68,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.dp-step:hover .dp-step-card {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(10,31,68,0.08);
    border-color: color-mix(in srgb, var(--step-c) 30%, transparent);
}

.dp-step-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--step-c);
    margin-bottom: 10px;
}

.dp-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1f44;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}
.dp-step-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #5a6a85;
    margin: 0;
}
.dp-step-desc a {
    color: var(--step-c);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.dp-step-desc strong { color: #0a1f44; font-weight: 700; }

/* Couleurs par étape */
.dp-step--1 { --step-c: #1268dc; --step-delay: 0s; }
.dp-step--2 { --step-c: #e69500; --step-delay: 1s; }
.dp-step--3 { --step-c: #10b981; --step-delay: 2s; }

/* CTA sous le timeline */
.dp-process-cta {
    margin-top: 56px;
    text-align: center;
}
.dp-process-cta .dp-btn { margin: 0 auto; }
.dp-process-cta-note {
    margin-top: 14px;
    font-size: 0.88rem;
    color: #5a6a85;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}
.dp-process-cta-note span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dp-process-cta-note svg { color: #10b981; }

/* Responsive */
@media (max-width: 900px) {
    .dp-process { padding: 80px 18px; }
    .dp-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    /* Ligne verticale entre les étapes */
    .dp-timeline::before {
        top: 104px;
        bottom: 104px;
        left: 50%;
        right: auto;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, #1268dc 0%, #f9a825 50%, #10b981 100%);
        background-size: 100% 200%;
    }
    .dp-timeline::after { display: none; }
    .dp-step-card { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 560px) {
    .dp-step-bubble { width: 84px; height: 84px; font-size: 2rem; }
    .dp-timeline::before { top: 84px; bottom: 84px; }
    .dp-step-card { padding: 22px 20px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .dp-timeline::before,
    .dp-step-bubble::after,
    .dp-step-bubble,
    .dp-step-card { animation: none !important; transition: none !important; }
}

/* ==========================================================
   PHOTO BAND .dp-band — immersif, Ken Burns + floating stat
   ========================================================== */
.dp-band {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background: #05122e;
}

/* Photo plein écran en fond avec Ken Burns zoom doux */
.dp-band-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.dp-band-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    transform: scale(1.05);
    animation: dpKenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes dpKenBurns {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Overlay : dégradé navy à gauche → transparent à droite + vignette bas */
.dp-band-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5,18,46,0) 60%, rgba(5,18,46,0.35) 100%),
        linear-gradient(90deg, rgba(5,18,46,0.88) 0%, rgba(10,31,68,0.72) 35%, rgba(10,31,68,0.25) 65%, rgba(10,31,68,0) 90%);
    pointer-events: none;
}
/* Détail doré décoratif : ligne verticale côté gauche */
.dp-band-overlay::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 50%;
    width: 2px;
    height: 88px;
    background: linear-gradient(180deg, transparent, #f9a825, transparent);
    transform: translateY(-50%);
    opacity: 0.8;
}
/* Grille subtile dans l'overlay */
.dp-band-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 20% 50%, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000 30%, transparent 70%);
    pointer-events: none;
}

/* Contenu */
.dp-band-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 80px;
}
.dp-band-inner {
    max-width: 620px;
}

.dp-band-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffd26a;
    margin-bottom: 22px;
}
.dp-band-eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f9a825);
    border-radius: 2px;
}

.dp-band-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.dp-band-title .hl {
    background: linear-gradient(135deg, #ffd26a 0%, #ff7a59 60%, #f9a825 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: dpGradShift 7s ease infinite;
    display: inline-block;
}

.dp-band-desc {
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin: 0 0 32px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
    max-width: 520px;
}
.dp-band-desc strong { color: #ffd26a; font-weight: 700; }

/* Carte flottante "stat" en bas-droite */
.dp-band-trust {
    position: absolute;
    right: 56px;
    bottom: 48px;
    z-index: 4;
    background: rgba(255,255,255,0.97);
    color: #0a1f44;
    padding: 22px 24px 20px;
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 320px;
    min-width: 300px;
    animation: dpFloatCard 6s ease-in-out infinite alternate;
}
.dp-band-trust-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.dp-band-trust-ico {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
}
.dp-band-trust-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #10b981, #1268dc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dp-band-trust-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0a1f44;
    line-height: 1.35;
    margin-bottom: 10px;
}
.dp-band-trust-foot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #edf0f5;
    font-size: 0.76rem;
    color: #5a6a85;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}
.dp-band-trust-foot .stars {
    color: #f9a825;
    font-size: 0.9rem;
    letter-spacing: -1px;
    flex-shrink: 0;
}
.dp-band-trust-foot-txt {
    white-space: nowrap;
    flex-shrink: 0;
}
.dp-band-trust-foot-txt strong { color: #0a1f44; font-weight: 700; }

/* Responsive */
@media (max-width: 1024px) {
    .dp-band { min-height: 500px; }
    .dp-band-content { padding: 60px 40px; }
    .dp-band-trust { right: 32px; bottom: 32px; }
}
@media (max-width: 768px) {
    .dp-band { min-height: auto; }
    .dp-band-content { padding: 56px 22px 260px; }
    .dp-band-inner { max-width: 100%; }
    .dp-band-overlay { background: linear-gradient(180deg, rgba(5,18,46,0.85) 0%, rgba(10,31,68,0.7) 60%, rgba(5,18,46,0.95) 100%); }
    .dp-band-overlay::before { display: none; }
    .dp-band-trust {
        right: 20px; left: 20px; bottom: 28px;
        max-width: none;
        min-width: 0;
    }
    .dp-band-trust-num { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .dp-band-content { padding: 48px 18px 240px; }
    .dp-band-eyebrow { letter-spacing: 2px; }
    .dp-band-eyebrow::before { width: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .dp-band-img,
    .dp-band-title .hl,
    .dp-band-trust { animation: none !important; }
}

/* ==========================================================
   ZONES .dp-zones — carte Leaflet + liste villes par dpt
   ========================================================== */
.dp-zones {
    position: relative;
    padding: 100px 20px;
    background: #fdfcfa;
    overflow: hidden;
}
.dp-zones::before {
    content: "";
    position: absolute;
    top: 10%; left: 50%;
    width: 800px; height: 800px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(18,104,220,0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.dp-zones-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Micro-triggers — style inline éditorial (pas de bouton/pilule) */
.dp-zones-triggers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    margin: 32px auto 40px;
    max-width: 920px;
}
.dp-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0a1f44;
    box-shadow: none;
    position: relative;
}
/* Séparateur discret entre les triggers (desktop) */
.dp-zones-triggers .dp-trigger:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cfd6e4;
}
.dp-trigger:hover {
    color: #1268dc;
}
.dp-trigger-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 8px;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(10,31,68,0.12);
}
.dp-trigger--speed .dp-trigger-ico  { background: linear-gradient(135deg, #f9a825, #ffc24d); }
.dp-trigger--pin .dp-trigger-ico    { background: linear-gradient(135deg, #1268dc, #3b82f6); }
.dp-trigger--phone .dp-trigger-ico  { background: linear-gradient(135deg, #10b981, #34d399); }
.dp-trigger--money .dp-trigger-ico  { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
@media (max-width: 600px) {
    .dp-zones-triggers { gap: 10px 20px; }
    .dp-zones-triggers .dp-trigger:not(:last-child)::after { right: -10px; }
}

/* Wrapper carte avec bordure gradient animée */
.dp-map-wrap {
    position: relative;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #1268dc 0%, #06b6d4 35%, #10b981 70%, #f9a825 100%);
    background-size: 250% 250%;
    animation: dpGradShift 12s ease infinite;
    box-shadow: 0 18px 50px rgba(10,31,68,0.12);
    margin: 0 auto 36px;
}
.dp-map-inner {
    position: relative;
    background: #fff;
    border-radius: 21px;
    overflow: hidden;
}

/* Légende au-dessus de la carte */
.dp-map-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 18px;
    padding: 14px 22px;
    border-bottom: 1px solid #edf0f5;
    background: #fafbfd;
}
.dp-map-legend-group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
}
.dp-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0a1f44;
}
.dp-map-badge::before {
    content: "";
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dp-map-badge--83::before { background: #2e7d32; box-shadow: 0 0 0 3px rgba(46,125,50,0.15); }
.dp-map-badge--06::before { background: #1565c0; box-shadow: 0 0 0 3px rgba(21,101,192,0.15); }
.dp-map-hint {
    font-size: 0.8rem;
    color: #5a6a85;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dp-map-hint::before { content: "👆"; font-size: 0.95rem; }

/* Carte Leaflet */
.dp-map-wrap #leaflet-map {
    width: 100%;
    height: 460px;
    border-radius: 0 0 21px 21px;
}

/* Ligne trust items sous la carte */
.dp-zones-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 40px 0 44px;
}
.dp-ztrust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(10,31,68,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dp-ztrust-item:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(10,31,68,0.08); }
.dp-ztrust-ico {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: #fff;
}
.dp-ztrust-item--home .dp-ztrust-ico  { background: linear-gradient(135deg, #1268dc, #3b82f6); }
.dp-ztrust-item--fast .dp-ztrust-ico  { background: linear-gradient(135deg, #f9a825, #ff7a59); }
.dp-ztrust-item--star .dp-ztrust-ico  { background: linear-gradient(135deg, #10b981, #34d399); }
.dp-ztrust-text {
    font-size: 0.94rem;
    line-height: 1.5;
    color: #0a1f44;
}
.dp-ztrust-text strong { font-weight: 800; }

/* CTA central */
.dp-zones-cta {
    text-align: center;
    margin-bottom: 52px;
}
.dp-zones-cta-note {
    margin-top: 12px;
    font-size: 0.86rem;
    color: #5a6a85;
}

/* Liste SEO 2 colonnes départements */
.dp-seo {
    background: #fff;
    border-radius: 24px;
    padding: 36px 36px 32px;
    border: 1px solid #edf0f5;
    box-shadow: 0 6px 24px rgba(10,31,68,0.05);
}
.dp-seo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a1f44;
    margin: 0 0 28px;
    text-align: center;
    letter-spacing: -0.2px;
}
.dp-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.dp-seo-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, currentColor, transparent) 1;
}
.dp-seo-col--83 .dp-seo-col-head { color: #2e7d32; }
.dp-seo-col--06 .dp-seo-col-head { color: #1565c0; }
.dp-seo-dept-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    padding: 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    border-radius: 8px;
    letter-spacing: 0.5px;
}
.dp-seo-col--83 .dp-seo-dept-chip { background: linear-gradient(135deg, #2e7d32, #43a047); }
.dp-seo-col--06 .dp-seo-dept-chip { background: linear-gradient(135deg, #1565c0, #1e88e5); }
.dp-seo-dept-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0a1f44;
}
.dp-seo-dept-count {
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a6a85;
}

/* Pills communes */
.dp-seo-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dp-seo-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fafbfd;
    border: 1px solid #edf0f5;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #0a1f44;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.dp-seo-city::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: currentColor;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}
.dp-seo-col--83 .dp-seo-city:hover {
    background: #e8f5e9;
    border-color: #2e7d32;
    color: #1b5e20;
    transform: translateY(-1px);
}
.dp-seo-col--06 .dp-seo-city:hover {
    background: #e3f2fd;
    border-color: #1565c0;
    color: #0d47a1;
    transform: translateY(-1px);
}
.dp-seo-city:hover::before { opacity: 1; }

/* Note finale */
.dp-zones-note {
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(90deg, rgba(249,168,37,0.08), rgba(16,185,129,0.06));
    border-left: 3px solid #f9a825;
    border-radius: 12px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #0a1f44;
}
.dp-zones-note strong { color: #e69500; font-weight: 800; }
.dp-zones-note a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1268dc;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
}
.dp-zones-note a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .dp-zones { padding: 80px 18px; }
    .dp-zones-trust { grid-template-columns: 1fr; gap: 12px; }
    .dp-seo { padding: 28px 22px 24px; }
    .dp-seo-grid { grid-template-columns: 1fr; gap: 28px; }
    .dp-map-wrap #leaflet-map { height: 380px; }
}
@media (max-width: 560px) {
    .dp-map-legend { flex-direction: column; align-items: flex-start; padding: 12px 16px; gap: 8px; }
    .dp-map-wrap #leaflet-map { height: 340px; }
    .dp-trigger { font-size: 0.85rem; padding: 0; }
    .dp-zones-triggers {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .dp-zones-triggers .dp-trigger {
        justify-content: flex-start;
    }
    .dp-zones-triggers .dp-trigger:not(:last-child)::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dp-map-wrap { animation: none !important; }
}

/* ==========================================================
   WHY .dp-why — Pourquoi nous : hero card + 6 cartes compactes
   ========================================================== */
.dp-why {
    position: relative;
    padding: 110px 20px 100px;
    background: #ffffff;
    overflow: hidden;
}
.dp-why::before {
    content: "";
    position: absolute;
    top: -120px; left: 50%;
    width: 700px; height: 700px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.dp-why::after {
    content: "";
    position: absolute;
    bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,168,37,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.dp-why-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero card — pleine largeur, navy + doré */
.dp-why-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 44px 48px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #0a1f44 0%, #0f2e6b 60%, #1268dc 100%);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(10,31,68,0.25);
    overflow: hidden;
    isolation: isolate;
}
.dp-why-hero::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(249,168,37,0.25) 0%, transparent 60%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}
.dp-why-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.dp-why-hero-content {
    position: relative;
    z-index: 1;
}
.dp-why-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #f9a825;
    margin-bottom: 18px;
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
}
.dp-why-hero-badge::before {
    content: "";
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #f9a825, #ffc24d);
    border-radius: 2px;
}
.dp-why-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.6px;
}
.dp-why-hero-title .hl {
    background: linear-gradient(135deg, #f9a825, #ffc24d 60%, #ffe08a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dp-why-hero-text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0 0 24px;
}
.dp-why-hero-proofs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
}
.dp-why-hero-proof {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    background: transparent;
    border: 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    line-height: 1.2;
    text-align: left;
}
@media (max-width: 768px) {
    .dp-why-hero-proofs { grid-template-columns: 1fr; gap: 8px; }
    .dp-why-hero-proof { justify-content: center; text-align: center; }
}
.dp-why-hero-proof::before {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}
.dp-why-hero-proof--check::before { content: "✓"; color: #10b981; }
.dp-why-hero-proof--star::before { content: "★"; color: #f9a825; }
.dp-why-hero-proof--clock::before { content: "⚡"; color: #f9a825; }

/* Visual à droite du hero — chiffre géant + ripples */
.dp-why-hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dp-why-bignum {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(249,168,37,0.3), rgba(249,168,37,0.05));
    border: 2px solid rgba(249,168,37,0.4);
    box-shadow: 0 0 0 6px rgba(249,168,37,0.08), 0 20px 50px rgba(249,168,37,0.25);
}
.dp-why-bignum::before, .dp-why-bignum::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid rgba(249,168,37,0.2);
    animation: dpWhyRipple 3.2s ease-out infinite;
}
.dp-why-bignum::after { animation-delay: 1.6s; }
@keyframes dpWhyRipple {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
.dp-why-bignum-n {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.2rem;
    font-weight: 900;
    line-height: 1;
    color: #f9a825;
    letter-spacing: -3px;
    text-shadow: 0 4px 20px rgba(249,168,37,0.4);
}
.dp-why-bignum-lbl {
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* Grille 6 cartes */
.dp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dp-why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 26px 26px;
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 20px;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
    --wc-c: #1268dc;
    --wc-c2: #3b82f6;
}
.dp-why-card::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, color-mix(in srgb, var(--wc-c) 25%, transparent) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.dp-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(10,31,68,0.12);
    border-color: color-mix(in srgb, var(--wc-c) 40%, transparent);
}
.dp-why-card:hover::before { opacity: 1; transform: scale(1.3); }
.dp-why-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--wc-c), var(--wc-c2));
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--wc-c) 35%, transparent);
    flex-shrink: 0;
}
.dp-why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0a1f44;
    margin: 0;
    letter-spacing: -0.2px;
}
.dp-why-card p {
    font-size: 0.93rem;
    line-height: 1.55;
    color: #5a6a85;
    margin: 0;
}
.dp-why-card p strong { color: #0a1f44; font-weight: 700; }

/* Variations couleur par carte */
.dp-why-card--home      { --wc-c: #1268dc; --wc-c2: #3b82f6; }
.dp-why-card--money     { --wc-c: #10b981; --wc-c2: #34d399; }
.dp-why-card--diag      { --wc-c: #06b6d4; --wc-c2: #22d3ee; }
.dp-why-card--exp       { --wc-c: #7c3aed; --wc-c2: #a78bfa; }
.dp-why-card--guarantee { --wc-c: #ff7a59; --wc-c2: #ff9b7a; }
.dp-why-card--human     { --wc-c: #f9a825; --wc-c2: #ffc24d; }

/* CTA final */
.dp-why-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
    text-align: center;
}
.dp-why-cta-txt {
    font-size: 1.05rem;
    color: #0a1f44;
    margin: 0;
}
.dp-why-cta-txt strong { font-weight: 800; }

/* Responsive */
@media (max-width: 1100px) {
    .dp-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .dp-why { padding: 80px 18px; }
    .dp-why-hero { grid-template-columns: 1fr; gap: 24px; padding: 36px 30px; text-align: center; }
    .dp-why-hero-proofs { justify-content: center; }
    .dp-why-bignum { width: 200px; height: 200px; }
    .dp-why-bignum-n { font-size: 4.2rem; }
}
@media (max-width: 600px) {
    .dp-why-grid { grid-template-columns: 1fr; gap: 14px; }
    .dp-why-hero { padding: 30px 22px; }
    .dp-why-hero-title { font-size: 1.5rem; }
    .dp-why-bignum { width: 170px; height: 170px; }
    .dp-why-bignum-n { font-size: 3.4rem; }
    .dp-why-card { padding: 24px 22px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .dp-why-bignum::before, .dp-why-bignum::after { animation: none !important; }
}

/* ==========================================================
   CRÉDIT D'IMPÔT .dp-ci — simulateur + 3 exemples
   ========================================================== */
.dp-ci {
    position: relative;
    padding: 110px 20px 100px;
    background: linear-gradient(180deg, #fdf9f3 0%, #ffffff 100%);
    overflow: hidden;
}
.dp-ci::before {
    content: "";
    position: absolute;
    top: -150px; left: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.09) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.dp-ci::after {
    content: "";
    position: absolute;
    bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,168,37,0.09) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.dp-ci-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Split grid : simulateur gauche + exemples droite */
.dp-ci-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 20px;
}

/* ---------- SIMULATEUR (colonne gauche) ---------- */
.dp-ci-simu {
    position: relative;
    padding: 40px 40px 36px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #edf0f5;
    box-shadow: 0 18px 50px rgba(10,31,68,0.08);
    overflow: hidden;
}
.dp-ci-simu::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #34d399, #f9a825, #ffc24d);
    background-size: 200% 100%;
    animation: dpGradShift 7s ease infinite;
}
.dp-ci-simu-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 8px;
}
.dp-ci-simu-kicker::before {
    content: "";
    width: 22px; height: 2px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
}
.dp-ci-simu-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: #0a1f44;
    margin: 0 0 24px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Slider */
.dp-ci-slider-block { margin-bottom: 26px; }
.dp-ci-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5a6a85;
    margin-bottom: 14px;
}
.dp-ci-slider-wrap { position: relative; }
.dp-ci-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #f9a825 0%, #10b981 100%);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(10,31,68,0.12) inset;
}
.dp-ci-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px; height: 28px;
    background: #fff;
    border: 3px solid #10b981;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 14px rgba(16,185,129,0.45), 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.dp-ci-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.dp-ci-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.dp-ci-slider::-moz-range-thumb {
    width: 28px; height: 28px;
    background: #fff;
    border: 3px solid #10b981;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 14px rgba(16,185,129,0.45);
}
.dp-ci-slider-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8899b0;
}

/* Résultats */
.dp-ci-results {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 22px;
    background: linear-gradient(135deg, #fafbfd 0%, #ffffff 100%);
    border: 1px solid #edf0f5;
    border-radius: 18px;
}
.dp-ci-result { text-align: center; }
.dp-ci-result-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8899b0;
    margin-bottom: 6px;
}
.dp-ci-result-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #5a6a85;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-decoration: line-through;
    text-decoration-color: rgba(10,31,68,0.25);
    text-decoration-thickness: 2px;
}
.dp-ci-result--after .dp-ci-result-value {
    text-decoration: none;
    background: linear-gradient(135deg, #10b981, #34d399 60%, #f9a825);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.6rem;
    letter-spacing: -1px;
}
.dp-ci-result-save {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #10b981;
}
.dp-ci-result-save strong { font-weight: 900; }
.dp-ci-result-arrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #10b981;
    animation: dpCiArrow 2s ease-in-out infinite;
}
@keyframes dpCiArrow {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(4px); opacity: 1; }
}

.dp-ci-disclaimer {
    margin: 22px 0 0;
    padding: 16px 18px;
    background: rgba(16,185,129,0.05);
    border-left: 3px solid #10b981;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #4a5668;
}
.dp-ci-disclaimer strong { color: #0a1f44; }
.dp-ci-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    font-size: 0.88rem;
    transition: gap 0.2s ease;
}
.dp-ci-learn:hover { gap: 10px; }

/* ---------- EXEMPLES (colonne droite) ---------- */
.dp-ci-examples {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dp-ci-ex-head {
    margin-bottom: 2px;
}
.dp-ci-ex-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #f9a825;
    margin-bottom: 8px;
}
.dp-ci-ex-kicker::before {
    content: "";
    width: 22px; height: 2px;
    background: linear-gradient(90deg, #f9a825, #ffc24d);
    border-radius: 2px;
}
.dp-ci-ex-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1f44;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
    line-height: 1.25;
}
.dp-ci-ex {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(10,31,68,0.04);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.dp-ci-ex:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(10,31,68,0.09);
    border-color: color-mix(in srgb, #10b981 35%, transparent);
}
.dp-ci-ex-ico {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #1268dc, #3b82f6);
    box-shadow: 0 6px 14px rgba(18,104,220,0.28);
    flex-shrink: 0;
}
.dp-ci-ex--virus .dp-ci-ex-ico   { background: linear-gradient(135deg, #ff7a59, #ff9b7a); box-shadow: 0 6px 14px rgba(255,122,89,0.3); }
.dp-ci-ex--install .dp-ci-ex-ico { background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 6px 14px rgba(124,58,237,0.3); }
.dp-ci-ex-info { min-width: 0; }
.dp-ci-ex-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0a1f44;
    margin: 0 0 2px;
    line-height: 1.25;
}
.dp-ci-ex-desc {
    font-size: 0.82rem;
    color: #5a6a85;
    line-height: 1.4;
    margin: 0;
}
.dp-ci-ex-prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-shrink: 0;
}
.dp-ci-ex-before {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8899b0;
    text-decoration: line-through;
    text-decoration-color: rgba(10,31,68,0.25);
}
.dp-ci-ex-after {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #f9a825);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1;
}
.dp-ci-ex-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #5a6a85;
    line-height: 1.4;
}
.dp-ci-ex-note::before {
    content: "ⓘ";
    font-size: 1rem;
    color: #1268dc;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .dp-ci-grid { grid-template-columns: 1fr; }
    .dp-ci-simu { padding: 36px 32px 32px; }
}
@media (max-width: 700px) {
    .dp-ci { padding: 80px 18px 70px; }
    .dp-ci-simu { padding: 30px 24px 26px; }
    .dp-ci-simu-title { font-size: 1.2rem; }
    .dp-ci-results { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
    .dp-ci-result-arrow { transform: rotate(90deg); }
    .dp-ci-result--after .dp-ci-result-value { font-size: 2.2rem; }
    .dp-ci-ex { grid-template-columns: auto 1fr; }
    .dp-ci-ex-prices { grid-column: 1 / -1; justify-content: flex-end; border-top: 1px dashed #edf0f5; padding-top: 10px; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .dp-ci-simu::before, .dp-ci-result-arrow { animation: none !important; }
}

/* ==========================================================
   AVIS .dp-reviews — wrapper créatif autour du marquee existant
   ========================================================== */
.dp-reviews {
    position: relative;
    padding: 100px 0 90px;
    background: #ffffff;
    overflow: hidden;
}
.dp-reviews::before {
    content: "";
    position: absolute;
    top: 40px; left: 50%;
    width: 900px; height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(6,182,212,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.dp-reviews::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10,31,68,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
    pointer-events: none;
}
.dp-reviews-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: center;
}

/* Badge Google créatif */
.dp-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px 18px 22px;
    margin: 28px auto 0;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(10,31,68,0.08);
    position: relative;
    isolation: isolate;
}
.dp-reviews-badge::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #4285F4 0%, #EA4335 35%, #FBBC05 65%, #34A853 100%);
    background-size: 200% 200%;
    animation: dpGradShift 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.dp-reviews-badge-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 18px;
    border-right: 1px solid #edf0f5;
}
.dp-reviews-badge-logo svg { width: 34px; height: 34px; }
.dp-reviews-badge-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #5a6a85;
    letter-spacing: 0.3px;
}
.dp-reviews-badge-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.dp-reviews-badge-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.dp-reviews-badge-score-n {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #0a1f44, #1268dc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dp-reviews-badge-score-max {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #8899b0;
}
.dp-reviews-badge-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 1rem;
    color: #f9a825;
    letter-spacing: 2px;
    line-height: 1;
}
.dp-reviews-badge-count {
    font-size: 0.82rem;
    color: #5a6a85;
    margin-top: 2px;
}
.dp-reviews-badge-count strong { color: #0a1f44; font-weight: 800; }

/* Footer "Lire tous les avis" - style lien, pas bouton */
.dp-reviews-footer {
    max-width: 1200px;
    margin: 36px auto 0;
    padding: 0 20px;
    text-align: center;
}
.dp-reviews-see-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1268dc;
    text-decoration: none;
    border: 0;
    background: transparent;
    padding: 4px 0 2px;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    transition: gap 0.2s ease, color 0.2s ease;
}
.dp-reviews-see-all:hover {
    gap: 14px;
    color: #0a1f44;
}
.dp-reviews-see-all svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 700px) {
    .dp-reviews { padding: 80px 0 70px; }
    .dp-reviews-badge { flex-direction: column; gap: 12px; padding: 20px 24px; }
    .dp-reviews-badge-logo { border-right: 0; padding: 0 0 12px; border-bottom: 1px solid #edf0f5; }
    .dp-reviews-badge-info { align-items: center; }
    .dp-reviews-badge-score-n { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .dp-reviews-badge::before { animation: none !important; }
}

/* ============================================================
   SECTION 10 — BIG CTA BAND .dp-bigcta (split 60/40)
   Fond gradient navy→bleu→cyan animé, 3 blobs (gold/coral/cyan)
   + motif de points, carte glassmorphism à droite, bouton tel XL
   avec ondes animées.
   ============================================================ */
.dp-bigcta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 20% 25%, rgba(18, 104, 220, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 80% 75%, rgba(6, 182, 212, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #0a1f44 0%, #0d2550 50%, #0a1f44 100%);
    background-size: 180% 180%, 180% 180%, 100% 100%;
    background-attachment: scroll;
    animation: dpBigCtaShift 28s ease-in-out infinite alternate;
    color: #ffffff;
}
@keyframes dpBigCtaShift {
    0%   { background-position:   0%   0%, 100% 100%, 0 0; }
    100% { background-position: 100% 100%,   0%   0%, 0 0; }
}

/* background decorations */
.dp-bigcta-bg {
    position: absolute; inset: 0; z-index: -1;
    pointer-events: none;
}
.dp-bigcta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.22;
    will-change: transform;
}
.dp-bigcta-blob--gold  { width: 360px; height: 360px; top: -100px; left: -80px;  background: #f9a825; animation: dpBigCtaFloat1 22s ease-in-out infinite; }
.dp-bigcta-blob--coral { width: 320px; height: 320px; bottom: -100px; right: -60px; background: #ff7a59; opacity: 0.18; animation: dpBigCtaFloat2 26s ease-in-out infinite; }
.dp-bigcta-blob--cyan  { width: 280px; height: 280px; top: 45%; right: 32%;     background: #06b6d4; opacity: 0.15; animation: dpBigCtaFloat3 30s ease-in-out infinite; }
@keyframes dpBigCtaFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes dpBigCtaFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-50px, -30px) scale(1.15); }
}
@keyframes dpBigCtaFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-80px, 50px) scale(0.9); }
}
.dp-bigcta-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    opacity: 0.5;
}

/* inner grid */
.dp-bigcta-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ─────────── LEFT : content ─────────── */
.dp-bigcta-content { max-width: 640px; }

.dp-bigcta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f9a825;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    margin-bottom: 22px;
}
.dp-bigcta-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #f9a825;
    box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.7);
    animation: dpBigCtaDot 1.8s ease-out infinite;
}
@keyframes dpBigCtaDot {
    0%   { box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.7); }
    100% { box-shadow: 0 0 0 14px rgba(249, 168, 37, 0); }
}

.dp-bigcta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.015em;
}
.dp-bigcta-title .hl {
    background: linear-gradient(110deg, #f9a825 0%, #ffcc54 45%, #ff7a59 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.dp-bigcta-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0 0 26px;
    max-width: 560px;
}

/* checks list (texte + icône, pas de pills) */
.dp-bigcta-checks {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
}
.dp-bigcta-checks li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
}
.dp-bigcta-checks svg {
    flex-shrink: 0;
    color: #10b981;
    background: rgba(16, 185, 129, 0.18);
    border-radius: 50%;
    padding: 4px;
    width: 24px; height: 24px;
}

/* CTA button XL with animated rings */
.dp-bigcta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px 18px 28px;
    background: linear-gradient(135deg, #f9a825 0%, #ffb84d 50%, #ff7a59 100%);
    color: #0a1f44;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    box-shadow:
        0 18px 44px rgba(249, 168, 37, 0.45),
        0 6px 14px rgba(255, 122, 89, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: visible;
    isolation: isolate;
}
.dp-bigcta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 26px 60px rgba(249, 168, 37, 0.55),
        0 10px 20px rgba(255, 122, 89, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.6);
}
.dp-bigcta-btn-rings {
    position: absolute; inset: -8px;
    border-radius: 22px;
    pointer-events: none;
    z-index: -1;
}
.dp-bigcta-btn-rings::before,
.dp-bigcta-btn-rings::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 22px;
    border: 2px solid rgba(249, 168, 37, 0.6);
    animation: dpBigCtaRing 2.4s ease-out infinite;
}
.dp-bigcta-btn-rings::after { animation-delay: 1.2s; }
@keyframes dpBigCtaRing {
    0%   { transform: scale(0.92); opacity: 0.9; }
    100% { transform: scale(1.25); opacity: 0; }
}
.dp-bigcta-btn-icon {
    background: rgba(10, 31, 68, 0.1);
    border-radius: 50%;
    padding: 8px;
    width: 44px; height: 44px;
    flex-shrink: 0;
}
.dp-bigcta-btn-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}
.dp-bigcta-btn-top {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 31, 68, 0.75);
    margin-bottom: 3px;
}
.dp-bigcta-btn-num {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}
.dp-bigcta-hint {
    display: block;
    margin-top: 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    padding-left: 4px;
}

/* ─────────── RIGHT : glassmorphism card ─────────── */
.dp-bigcta-card {
    position: relative;
    padding: 36px 32px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 26px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.22);
    color: #ffffff;
    overflow: hidden;
}
.dp-bigcta-card::before {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.5), rgba(6, 182, 212, 0.5), rgba(16, 185, 129, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    padding: 2px;
    pointer-events: none;
    opacity: 0.55;
}

.dp-bigcta-card-pulse {
    position: relative;
    width: 78px; height: 78px;
    margin: 0 0 18px;
    display: flex; align-items: center; justify-content: center;
    color: #0a1f44;
    background: linear-gradient(135deg, #f9a825, #ffcc54);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(249, 168, 37, 0.45);
}
.dp-bigcta-card-pulse-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(249, 168, 37, 0.7);
    animation: dpBigCtaPulseRing 2.2s ease-out infinite;
}
.dp-bigcta-card-pulse-ring:nth-child(2) { animation-delay: 0.7s; }
.dp-bigcta-card-pulse-ring:nth-child(3) { animation-delay: 1.4s; }
@keyframes dpBigCtaPulseRing {
    0%   { transform: scale(1);    opacity: 0.8; }
    100% { transform: scale(1.9); opacity: 0; }
}

.dp-bigcta-card-kicker {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    position: relative;
    transition: color 0.3s ease;
    /* default = open */
    color: #10b981;
}
.dp-bigcta-card-kicker-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 currentColor;
    animation: dpBigCtaDot 1.8s ease-out infinite;
    flex-shrink: 0;
}
.dp-bigcta-card-kicker-label { white-space: nowrap; }

/* Open state (default) — vert */
.dp-bigcta-card-kicker--open { color: #10b981; }
/* Closed state — ambre */
.dp-bigcta-card-kicker--closed { color: #f9a825; }
.dp-bigcta-card-kicker--closed .dp-bigcta-card-kicker-dot {
    animation: none;
    box-shadow: none;
}

.dp-bigcta-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 22px;
    color: #ffffff;
}
.dp-bigcta-card-title span {
    background: linear-gradient(110deg, #f9a825, #ffcc54, #ff7a59);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.dp-bigcta-card-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dp-bigcta-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
}
.dp-bigcta-card-list strong { color: #ffffff; font-weight: 700; }
.dp-bigcta-card-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dp-bigcta-card-dot--green { background: #10b981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.7); }
.dp-bigcta-card-dot--gold  { background: #f9a825; box-shadow: 0 0 12px rgba(249, 168, 37, 0.7); }
.dp-bigcta-card-dot--cyan  { background: #06b6d4; box-shadow: 0 0 12px rgba(6, 182, 212, 0.7); }

.dp-bigcta-card-foot {
    display: flex; align-items: center; gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.dp-bigcta-card-stars {
    color: #f9a825;
    font-size: 1rem;
    letter-spacing: 2px;
}
.dp-bigcta-card-foot-txt {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}
.dp-bigcta-card-foot-txt strong { color: #ffffff; font-weight: 800; }

/* ─────────── Responsive ─────────── */
@media (max-width: 1024px) {
    .dp-bigcta-inner { gap: 40px; }
    .dp-bigcta-card { padding: 30px 26px 26px; }
    .dp-bigcta-card-title { font-size: 1.75rem; }
}
@media (max-width: 900px) {
    .dp-bigcta { padding: 80px 0 90px; }
    .dp-bigcta-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .dp-bigcta-content { max-width: none; }
    .dp-bigcta-card {
        max-width: 420px;
        margin: 0 auto;
    }
}
@media (max-width: 560px) {
    .dp-bigcta { padding: 64px 0 74px; }
    .dp-bigcta-inner { padding: 0 18px; gap: 34px; }
    .dp-bigcta-eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; padding: 7px 12px 7px 11px; }
    .dp-bigcta-checks { grid-template-columns: 1fr; gap: 10px; }
    .dp-bigcta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        gap: 12px;
    }
    .dp-bigcta-btn-icon { width: 38px; height: 38px; padding: 7px; }
    .dp-bigcta-btn-num { font-size: 1.25rem; }
    .dp-bigcta-btn-top { font-size: 0.68rem; }
    .dp-bigcta-hint { text-align: center; padding-left: 0; }
    .dp-bigcta-card { padding: 26px 22px 22px; }
    .dp-bigcta-card-title { font-size: 1.6rem; }
    .dp-bigcta-card-pulse { width: 64px; height: 64px; }
    .dp-bigcta-card-pulse svg { width: 28px; height: 28px; }
}

/* ─────────── Reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
    .dp-bigcta,
    .dp-bigcta-blob,
    .dp-bigcta-eyebrow-dot,
    .dp-bigcta-btn-rings::before,
    .dp-bigcta-btn-rings::after,
    .dp-bigcta-card-pulse-ring,
    .dp-bigcta-card-kicker::before {
        animation: none !important;
    }
}

/* ============================================================
   SECTION 11 — À PROPOS .dp-about (split image-gauche / texte)
   Fond crème subtil, image dans cadre bordure gradient animée,
   2 badges flottants (expérience + agrément), stats 3 cartes.
   ============================================================ */
.dp-about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0 110px;
    background: #fdf9f3;
    color: #0a1f44;
}

/* background decorations */
.dp-about-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: -1;
}
.dp-about-blob {
    position: absolute;
    top: -140px;
    right: -120px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, transparent 70%);
    filter: blur(60px);
    animation: dpAboutFloat 26s ease-in-out infinite alternate;
}
@keyframes dpAboutFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 30px) scale(1.1); }
}
.dp-about-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(10, 31, 68, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at 30% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 30%, black 20%, transparent 70%);
    opacity: 0.6;
}

/* inner wrapper */
.dp-about-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* split layout */
.dp-about-split {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 68px;
    align-items: center;
}

/* ─────────── IMAGE SIDE ─────────── */
.dp-about-image {
    position: relative;
    max-width: 520px;
}
.dp-about-frame {
    position: relative;
    border-radius: 28px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(18, 104, 220, 0.45), rgba(6, 182, 212, 0.45), rgba(249, 168, 37, 0.45));
    background-size: 200% 200%;
    animation: dpAboutBorder 12s ease-in-out infinite alternate;
    box-shadow:
        0 30px 60px rgba(10, 31, 68, 0.12),
        0 12px 24px rgba(10, 31, 68, 0.08);
}
@keyframes dpAboutBorder {
    0%   { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}
.dp-about-frame::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(18, 104, 220, 0.2), transparent 60%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}
.dp-about-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    position: relative;
    z-index: 0;
}

/* Floating badges */
.dp-about-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 18px 44px rgba(10, 31, 68, 0.16),
        0 6px 14px rgba(10, 31, 68, 0.08);
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    animation: dpAboutBadge 4s ease-in-out infinite alternate;
}
.dp-about-badge svg { flex-shrink: 0; }
.dp-about-badge-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.dp-about-badge-top {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.72;
    color: #0a1f44;
}
.dp-about-badge-bot {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0a1f44;
    margin-top: 2px;
}

.dp-about-badge--exp {
    top: 22px;
    left: -26px;
    color: #f9a825;
    animation-delay: 0s;
}
.dp-about-badge--exp::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f9a825, #ffcc54);
    z-index: -1;
    opacity: 0.18;
    filter: blur(6px);
}
.dp-about-badge--agree {
    bottom: 28px;
    right: -30px;
    color: #10b981;
    animation-delay: 1.8s;
}
.dp-about-badge--agree::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #10b981, #34d399);
    z-index: -1;
    opacity: 0.18;
    filter: blur(6px);
}
@keyframes dpAboutBadge {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* ─────────── CONTENT SIDE ─────────── */
.dp-about-content { max-width: 640px; }

.dp-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1268dc;
    margin-bottom: 20px;
}
.dp-about-eyebrow-bar {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #1268dc, #06b6d4);
    border-radius: 2px;
}

.dp-about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 900;
    line-height: 1.12;
    color: #0a1f44;
    margin: 0 0 24px;
    letter-spacing: -0.015em;
}
.dp-about-title .hl {
    background: linear-gradient(110deg, #1268dc 0%, #06b6d4 60%, #f9a825 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.dp-about-p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3a52;
    margin: 0 0 18px;
}
.dp-about-p strong { color: #0a1f44; font-weight: 700; }
.dp-about-p a {
    color: #1268dc;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(18, 104, 220, 0.4);
    transition: color 0.2s, border-color 0.2s;
}
.dp-about-p a:hover { color: #0a1f44; border-bottom-color: #0a1f44; }

/* Checks inline */
.dp-about-checks {
    list-style: none;
    padding: 0;
    margin: 26px 0 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}
.dp-about-checks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    color: #0a1f44;
}
.dp-about-checks svg {
    flex-shrink: 0;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    padding: 3px;
    width: 22px; height: 22px;
}

/* Signature */
.dp-about-signature {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 1rem;
    color: #1268dc;
    margin: 6px 0 0;
    opacity: 0.85;
}

/* ─────────── STATS BANDEAU ─────────── */
.dp-about-stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.dp-about-stat {
    position: relative;
    overflow: hidden;
    padding: 28px 26px 26px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow:
        0 14px 40px rgba(10, 31, 68, 0.07),
        0 4px 12px rgba(10, 31, 68, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dp-about-stat:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 54px rgba(10, 31, 68, 0.1),
        0 8px 18px rgba(10, 31, 68, 0.06);
}
.dp-about-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0.9;
}
.dp-about-stat-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    opacity: 0.28;
}
.dp-about-stat-n {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.dp-about-stat-l {
    margin-top: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #4a5568;
    letter-spacing: 0.02em;
}

/* Per-color variants */
.dp-about-stat--blue .dp-about-stat-n,
.dp-about-stat--blue .dp-about-stat-icon { color: #1268dc; }
.dp-about-stat--blue .dp-about-stat-n { background-image: linear-gradient(120deg, #1268dc, #06b6d4); }
.dp-about-stat--blue::before { background: linear-gradient(90deg, #1268dc, #06b6d4); }

.dp-about-stat--gold .dp-about-stat-n,
.dp-about-stat--gold .dp-about-stat-icon { color: #f9a825; }
.dp-about-stat--gold .dp-about-stat-n { background-image: linear-gradient(120deg, #f9a825, #ff7a59); }
.dp-about-stat--gold::before { background: linear-gradient(90deg, #f9a825, #ff7a59); }

.dp-about-stat--green .dp-about-stat-n,
.dp-about-stat--green .dp-about-stat-icon { color: #10b981; }
.dp-about-stat--green .dp-about-stat-n { background-image: linear-gradient(120deg, #10b981, #06b6d4); }
.dp-about-stat--green::before { background: linear-gradient(90deg, #10b981, #06b6d4); }

/* ─────────── Responsive ─────────── */
@media (max-width: 1024px) {
    .dp-about-split { gap: 48px; }
    .dp-about-badge--exp { left: -14px; }
    .dp-about-badge--agree { right: -16px; }
}
@media (max-width: 900px) {
    .dp-about { padding: 80px 0 90px; }
    .dp-about-split {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .dp-about-image {
        max-width: 460px;
        margin: 0 auto;
    }
    .dp-about-content { max-width: none; }
}
@media (max-width: 640px) {
    .dp-about-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
@media (max-width: 560px) {
    .dp-about { padding: 64px 0 74px; }
    .dp-about-inner { padding: 0 18px; }
    .dp-about-badge {
        padding: 10px 14px 10px 12px;
        border-radius: 14px;
    }
    .dp-about-badge svg { width: 20px; height: 20px; }
    .dp-about-badge-top { font-size: 0.62rem; }
    .dp-about-badge-bot { font-size: 0.85rem; }
    .dp-about-badge--exp { top: 14px; left: -8px; }
    .dp-about-badge--agree { bottom: 14px; right: -10px; }
    .dp-about-checks { gap: 8px 18px; }
    .dp-about-stat { padding: 22px 22px 20px; }
    .dp-about-stat-n { font-size: 2.4rem; }
    .dp-about-stat-icon { top: 18px; right: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dp-about-blob,
    .dp-about-frame,
    .dp-about-badge {
        animation: none !important;
    }
}

/* ============================================================
   SECTION 12 — FAQ .dp-faq (accordéon 1 colonne éditorial)
   Fond blanc avec subtle motif + blob cyan, items spacieux,
   numéro coloré par cycle, barre gradient sur actif.
   ============================================================ */
.dp-faq {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0 110px;
    background: #ffffff;
    color: #0a1f44;
}

.dp-faq-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: -1;
}
.dp-faq-blob {
    position: absolute;
    top: -100px;
    left: -120px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    filter: blur(60px);
    animation: dpFaqFloat 28s ease-in-out infinite alternate;
}
@keyframes dpFaqFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}
.dp-faq-dots {
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 60%;
    background-image: radial-gradient(rgba(10, 31, 68, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
    opacity: 0.7;
}

.dp-faq-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.dp-faq-head {
    text-align: center;
    margin-bottom: 54px;
}
.dp-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1268dc;
    margin-bottom: 16px;
}
.dp-faq-eyebrow-bar {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #1268dc, #06b6d4);
    border-radius: 2px;
}
.dp-faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.12;
    color: #0a1f44;
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}
.dp-faq-title .hl {
    background: linear-gradient(110deg, #1268dc 0%, #06b6d4 60%, #f9a825 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.dp-faq-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 640px;
    margin: 0 auto;
}

/* List wrapper — override legacy .faq-list grid layout */
.dp-faq-list {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    grid-template-columns: none !important;
}

/* Item */
.dp-faq-item {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5ebf3;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    padding: 0;
    box-shadow: 0 1px 0 rgba(10, 31, 68, 0.02);
}
.dp-faq-item::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 4px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dp-faq-item:hover {
    border-color: #d1dae6;
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.06);
}
.dp-faq-item.active {
    background: #fdf9f3;
    border-color: color-mix(in srgb, currentColor 30%, #e5ebf3);
    box-shadow:
        0 18px 40px rgba(10, 31, 68, 0.08),
        0 6px 14px rgba(10, 31, 68, 0.04);
}
.dp-faq-item.active::before { opacity: 1; }

/* Per-color accents (cycle) — on stocke la couleur dans une CSS var
   pour éviter les pièges `currentColor` quand on change aussi `color` */
.dp-faq-item--blue  { --dp-faq-c: #1268dc; color: #1268dc; }
.dp-faq-item--cyan  { --dp-faq-c: #06b6d4; color: #06b6d4; }
.dp-faq-item--gold  { --dp-faq-c: #f9a825; color: #f9a825; }
.dp-faq-item--coral { --dp-faq-c: #ff7a59; color: #ff7a59; }
.dp-faq-item--green { --dp-faq-c: #10b981; color: #10b981; }

/* Question (button) — override legacy .faq-question fully */
.dp-faq-q {
    display: flex !important;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 22px 26px 22px 22px;
    background: transparent !important;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #0a1f44;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    transition: padding-left 0.25s ease;
}
.dp-faq-item.active .dp-faq-q { padding-left: 30px; }

.dp-faq-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    width: 42px; height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--dp-faq-c, #1268dc) 12%, transparent);
    color: var(--dp-faq-c, #1268dc);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.dp-faq-item.active .dp-faq-num {
    background: var(--dp-faq-c, #1268dc) !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 6px 14px color-mix(in srgb, var(--dp-faq-c, #1268dc) 35%, transparent);
}

.dp-faq-qtxt {
    flex: 1;
    color: #0a1f44;
}

.dp-faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
}
.dp-faq-item.active .dp-faq-chevron {
    transform: rotate(90deg);
    color: currentColor;
}

/* Answer — override legacy .faq-answer */
.dp-faq-a {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 !important;
    background: transparent !important;
}
.dp-faq-item.active .dp-faq-a {
    max-height: 1500px !important;
    padding: 0 !important;
}
.dp-faq-a-inner {
    padding: 0 26px 24px 86px;
}
.dp-faq-a-inner p {
    padding: 0 !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #2d3a52;
    margin: 0;
}
.dp-faq-a-inner p a {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.dp-faq-a-inner p a:hover {
    background: transparent !important;
    color: #0a1f44 !important;
}
.dp-faq-a-inner p strong { color: #0a1f44; font-weight: 700; }
.dp-faq-a-inner p a {
    color: #1268dc;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(18, 104, 220, 0.35);
    transition: color 0.2s, border-color 0.2s;
}
.dp-faq-a-inner p a:hover {
    color: #0a1f44;
    border-bottom-color: #0a1f44;
}

/* End note */
.dp-faq-end {
    margin: 42px 0 0;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #4a5568;
}
.dp-faq-end-link {
    color: #1268dc;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid rgba(18, 104, 220, 0.35);
    transition: color 0.2s, border-color 0.2s;
}
.dp-faq-end-link:hover {
    color: #0a1f44;
    border-bottom-color: #0a1f44;
}

/* Responsive */
@media (max-width: 700px) {
    .dp-faq { padding: 80px 0 80px; }
    .dp-faq-head { margin-bottom: 40px; }
    .dp-faq-q {
        padding: 18px 18px 18px 16px;
        gap: 14px;
        font-size: 0.98rem;
    }
    .dp-faq-item.active .dp-faq-q { padding-left: 20px; }
    .dp-faq-num {
        width: 36px; height: 36px; min-width: 36px;
        font-size: 0.78rem;
        border-radius: 10px;
    }
    .dp-faq-a-inner { padding: 0 18px 20px 66px; }
    .dp-faq-a-inner p { font-size: 0.94rem; line-height: 1.65; }
    .dp-faq-chevron { width: 20px; height: 20px; }
    .dp-faq-end { font-size: 0.94rem; }
}
@media (max-width: 480px) {
    .dp-faq-a-inner { padding: 0 16px 18px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dp-faq-blob,
    .dp-faq-item,
    .dp-faq-num,
    .dp-faq-chevron,
    .dp-faq-a { animation: none !important; transition: none !important; }
}

/* ============================================================
   SECTION 13 — CONTACT CRÉATIF (.dp-contact)
   Split hiérarchisé : infos (gauche) + CTA tel XL & form (droite)
   ============================================================ */
.dp-contact {
    position: relative;
    padding: 110px 24px 120px;
    background: linear-gradient(155deg, #061533 0%, #0a1f44 45%, #0d2656 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.dp-contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.dp-contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.28;
    will-change: transform;
}
.dp-contact-blob--cyan {
    width: 560px; height: 560px;
    top: -180px; left: -140px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    animation: dpContactFloat1 22s ease-in-out infinite;
}
.dp-contact-blob--gold {
    width: 520px; height: 520px;
    bottom: -200px; right: -140px;
    background: radial-gradient(circle, #f9a825 0%, transparent 70%);
    animation: dpContactFloat2 26s ease-in-out infinite;
}
@keyframes dpContactFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(80px, 60px) scale(1.08); }
}
@keyframes dpContactFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-60px, -50px) scale(1.1); }
}
.dp-contact-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    opacity: 0.55;
}
.dp-contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

/* HEAD */
.dp-contact-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}
.dp-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #06b6d4;
    margin-bottom: 18px;
}
.dp-contact-eyebrow-bar {
    width: 36px; height: 2px;
    background: linear-gradient(90deg, #06b6d4 0%, #f9a825 100%);
    border-radius: 2px;
}
.dp-contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.1rem, 4.4vw, 3rem);
    line-height: 1.12;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.02em;
}
.dp-contact-title .hl {
    background: linear-gradient(120deg, #06b6d4 0%, #f9a825 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.dp-contact-sub {
    font-size: 1.08rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

/* GRID */
.dp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
    align-items: start;
}

/* COLONNE INFO (gauche) */
.dp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dp-contact-tile {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}
a.dp-contact-tile:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.dp-contact-tile-ic {
    position: relative;
    width: 44px; height: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.dp-contact-tile-txt {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.dp-contact-tile-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4px;
}
.dp-contact-tile-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    color: #fff;
    line-height: 1.3;
    word-break: break-word;
}
.dp-contact-tile-hint {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.62);
    margin-top: 4px;
    line-height: 1.45;
}

/* Variantes de tiles : accents colorés */
.dp-contact-tile--tel {
    background: linear-gradient(135deg, rgba(249,168,37,0.14) 0%, rgba(255,122,89,0.08) 100%);
    border-color: rgba(249,168,37,0.28);
}
.dp-contact-tile--tel .dp-contact-tile-ic {
    background: linear-gradient(135deg, #f9a825 0%, #ff7a59 100%);
    color: #0a1f44;
    box-shadow: 0 8px 22px rgba(249,168,37,0.35);
}
.dp-contact-tile--tel .dp-contact-tile-val {
    color: #ffd77e;
    font-size: 1.3rem;
    letter-spacing: 0.01em;
}
.dp-contact-tile-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 2px solid rgba(249,168,37,0.55);
    animation: dpContactPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes dpContactPulse {
    0%   { transform: scale(0.9);  opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}

.dp-contact-tile--mail .dp-contact-tile-ic {
    background: rgba(18,104,220,0.22);
    color: #6ea8ff;
    border: 1px solid rgba(18,104,220,0.45);
}
.dp-contact-tile--geo .dp-contact-tile-ic {
    background: rgba(6,182,212,0.18);
    color: #67e8f9;
    border: 1px solid rgba(6,182,212,0.40);
}
.dp-contact-tile--hours .dp-contact-tile-ic {
    background: rgba(16,185,129,0.18);
    color: #6ee7b7;
    border: 1px solid rgba(16,185,129,0.40);
}

.dp-contact-hours {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.96rem;
    font-weight: 700;
}
.dp-contact-hours span {
    color: #fff;
}
/* Badge dispo : texte seul + point coloré (pas un bouton) — override legacy .availability-badge */
.dp-contact-tile-avail.availability-badge,
.dp-contact-tile-avail {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.88);
}
.dp-contact-tile-avail.availability-badge--open {
    color: #6ee7b7 !important;
}
.dp-contact-tile-avail.availability-badge--closed {
    color: #fbbf24 !important;
}
.dp-contact-tile-avail .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dp-contact-tile-avail.availability-badge--open .dot {
    background: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.22) !important;
}
.dp-contact-tile-avail.availability-badge--closed .dot {
    background: #fbbf24 !important;
    box-shadow: 0 0 0 4px rgba(251,191,36,0.22) !important;
}

/* COLONNE ACTION (droite) */
.dp-contact-action {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* CTA tel XL */
.dp-contact-btn-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 26px;
    background: linear-gradient(135deg, #f9a825 0%, #ffb84d 50%, #ff7a59 100%);
    color: #0a1f44;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    box-shadow:
        0 20px 48px rgba(249, 168, 37, 0.45),
        0 6px 16px rgba(255, 122, 89, 0.32),
        inset 0 1px 0 rgba(255,255,255,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
    align-self: center;
    width: 100%;
    max-width: 440px;
}
.dp-contact-btn-call:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 28px 64px rgba(249, 168, 37, 0.55),
        0 10px 22px rgba(255, 122, 89, 0.42),
        inset 0 1px 0 rgba(255,255,255,0.65);
}
.dp-contact-btn-rings {
    position: absolute; inset: -6px;
    border-radius: 22px;
    pointer-events: none;
    z-index: -1;
}
.dp-contact-btn-rings::before,
.dp-contact-btn-rings::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 22px;
    border: 2px solid rgba(249, 168, 37, 0.6);
    animation: dpContactBtnRing 2.4s ease-out infinite;
}
.dp-contact-btn-rings::after { animation-delay: 1.2s; }
@keyframes dpContactBtnRing {
    0%   { transform: scale(0.94); opacity: 0.9; }
    100% { transform: scale(1.22); opacity: 0; }
}
.dp-contact-btn-ic {
    background: rgba(10, 31, 68, 0.12);
    border-radius: 50%;
    padding: 8px;
    width: 42px; height: 42px;
    flex-shrink: 0;
}
.dp-contact-btn-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}
.dp-contact-btn-top {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 31, 68, 0.78);
    margin-bottom: 3px;
}
.dp-contact-btn-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0a1f44;
    letter-spacing: 0.01em;
}

/* Divider "ou envoyez-nous un message" */
.dp-contact-or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 4px 0 -4px;
}
.dp-contact-or-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.12);
}
.dp-contact-or-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* Mini-ligne recadrage */
.dp-contact-hint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 6px;
    padding: 12px 14px;
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.22);
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}
.dp-contact-hint svg {
    color: #67e8f9;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FORM */
.dp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.dp-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.dp-contact-field {
    position: relative;
}
.dp-contact-input {
    width: 100%;
    padding: 22px 0 10px 0;
    background: transparent;
    border: 0;
    border-bottom: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}
.dp-contact-input:focus {
    border-bottom-color: #06b6d4;
    box-shadow: 0 2px 0 0 rgba(6,182,212,0.25);
}
.dp-contact-input::placeholder {
    color: transparent;
}
.dp-contact-label {
    position: absolute;
    left: 0;
    top: 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    pointer-events: none;
    transition: transform 0.2s ease, color 0.2s ease, font-size 0.2s ease;
    transform-origin: left top;
}
.dp-contact-input:focus + .dp-contact-label,
.dp-contact-input:not(:placeholder-shown) + .dp-contact-label {
    transform: translateY(-18px) scale(0.82);
    color: #67e8f9;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
/* Select quand une valeur est choisie (option value non vide) */
.dp-contact-select:not(:placeholder-shown):valid + .dp-contact-label,
.dp-contact-select:valid:not([value=""]) + .dp-contact-label {
    transform: translateY(-18px) scale(0.82);
    color: #67e8f9;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.dp-contact-textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 26px;
    line-height: 1.5;
}
.dp-contact-select {
    padding-right: 32px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2367e8f9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    cursor: pointer;
}
.dp-contact-select option {
    background: #0a1f44;
    color: #fff;
}

/* Bouton submit */
.dp-contact-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    margin-top: 8px;
    background: linear-gradient(135deg, #1268dc 0%, #06b6d4 100%);
    color: #fff;
    border: 0;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow:
        0 14px 34px rgba(18, 104, 220, 0.4),
        0 4px 10px rgba(6, 182, 212, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    isolation: isolate;
}
.dp-contact-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transition: left 0.6s ease;
    z-index: -1;
}
.dp-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 48px rgba(18, 104, 220, 0.5),
        0 8px 16px rgba(6, 182, 212, 0.38),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
.dp-contact-submit:hover::before {
    left: 100%;
}
.dp-contact-submit:active {
    transform: translateY(0);
}
.dp-contact-submit svg {
    transition: transform 0.25s ease;
}
.dp-contact-submit:hover svg {
    transform: translateX(3px) translateY(-2px) rotate(-6deg);
}

/* Responsive */
@media (max-width: 980px) {
    .dp-contact { padding: 90px 22px 100px; }
    .dp-contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .dp-contact-head { margin-bottom: 48px; }
}
@media (max-width: 640px) {
    .dp-contact { padding: 72px 18px 84px; }
    .dp-contact-title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
    .dp-contact-sub { font-size: 0.98rem; }
    .dp-contact-action { padding: 22px 18px; }
    .dp-contact-tile { padding: 16px 16px; gap: 13px; }
    .dp-contact-tile-ic { width: 40px; height: 40px; min-width: 40px; }
    .dp-contact-tile--tel .dp-contact-tile-val { font-size: 1.15rem; }
    .dp-contact-form-row { grid-template-columns: 1fr; gap: 18px; }
    .dp-contact-btn-call { padding: 16px 20px; gap: 12px; }
    .dp-contact-btn-num { font-size: 1.2rem; }
    .dp-contact-btn-ic { width: 38px; height: 38px; padding: 7px; }
}
@media (max-width: 420px) {
    .dp-contact-blob--cyan { width: 380px; height: 380px; }
    .dp-contact-blob--gold { width: 360px; height: 360px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dp-contact-blob,
    .dp-contact-tile-pulse,
    .dp-contact-btn-rings::before,
    .dp-contact-btn-rings::after,
    .dp-contact-submit::before {
        animation: none !important;
        transition: none !important;
    }
    .dp-contact-btn-call:hover,
    .dp-contact-submit:hover,
    a.dp-contact-tile:hover {
        transform: none !important;
    }
}

/* ============================================================
   BANDEAUX POST-MAIN — CRÉATIF
   .dp-guarantee (Satisfait ou re-intervention 7j)
   .dp-sap-cert  (Agrément Services à la Personne — 50%)
   ============================================================ */

/* ---------- GARANTIE ---------- */
.dp-guarantee {
    position: relative;
    padding: 36px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf9 100%);
    border-top: 1px solid rgba(16,185,129,0.18);
    border-bottom: 1px solid rgba(16,185,129,0.18);
    overflow: hidden;
    isolation: isolate;
}
.dp-guarantee-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.dp-guarantee-blob {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
    filter: blur(70px);
    opacity: 0.85;
}
.dp-guarantee-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
}
.dp-guarantee-ic {
    position: relative;
    width: 64px; height: 64px;
    min-width: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(16,185,129,0.4);
    flex-shrink: 0;
}
.dp-guarantee-rings {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.55);
    animation: dpGuaranteeRing 2.4s ease-out infinite;
    pointer-events: none;
}
.dp-guarantee-rings::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.45);
    animation: dpGuaranteeRing 2.4s ease-out infinite;
    animation-delay: 1.2s;
}
@keyframes dpGuaranteeRing {
    0%   { transform: scale(0.9);  opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}
.dp-guarantee-txt {
    flex: 1 1 auto;
    min-width: 260px;
    max-width: 760px;
}
.dp-guarantee-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 5px;
}
.dp-guarantee-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.25;
    margin: 0 0 4px;
    color: #0a1f44;
    letter-spacing: -0.01em;
}
.dp-guarantee-title .hl {
    background: linear-gradient(120deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.dp-guarantee-desc {
    font-size: 0.96rem;
    line-height: 1.55;
    margin: 0;
    color: #334155;
}
.dp-guarantee-desc strong {
    color: #0a1f44;
    font-weight: 700;
}
.dp-guarantee-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 22px;
    background: linear-gradient(135deg, #fff7e0 0%, #fff1c2 100%);
    border: 1.5px solid rgba(249,168,37,0.4);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(249,168,37,0.15);
    flex-shrink: 0;
}
.dp-guarantee-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    color: #b8831a;
}
.dp-guarantee-stat-lbl {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8831a;
    margin-top: 3px;
}

/* ---------- SAP CERT ---------- */
.dp-sap-cert {
    position: relative;
    padding: 38px 24px;
    background: linear-gradient(135deg, #f5f7fc 0%, #eaf1fb 60%, #fdf9f3 100%);
    border-bottom: 1px solid rgba(18,104,220,0.15);
    overflow: hidden;
    isolation: isolate;
}
.dp-sap-cert-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.dp-sap-cert-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.dp-sap-cert-blob--blue {
    width: 380px; height: 380px;
    top: -100px; left: -80px;
    background: radial-gradient(circle, rgba(18,104,220,0.35) 0%, transparent 70%);
}
.dp-sap-cert-blob--gold {
    width: 340px; height: 340px;
    bottom: -120px; right: -60px;
    background: radial-gradient(circle, rgba(249,168,37,0.35) 0%, transparent 70%);
}
.dp-sap-cert-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.dp-sap-cert-logo-wrap {
    position: relative;
    flex: 0 0 auto;
    width: 92px; height: 92px;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 14px 36px rgba(18,104,220,0.18);
    border: 1px solid rgba(18,104,220,0.12);
}
.dp-sap-cert-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.dp-sap-cert-txt {
    flex: 1 1 auto;
    min-width: 260px;
    max-width: 720px;
}
.dp-sap-cert-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1268dc;
    margin-bottom: 5px;
}
.dp-sap-cert-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.25;
    margin: 0 0 5px;
    color: #0a1f44;
    letter-spacing: -0.01em;
}
.dp-sap-cert-title .hl {
    background: linear-gradient(120deg, #1268dc 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.dp-sap-cert-desc {
    font-size: 0.96rem;
    line-height: 1.55;
    margin: 0;
    color: #334155;
}
.dp-sap-cert-desc strong {
    color: #0a1f44;
    font-weight: 800;
}
.dp-sap-cert-badge {
    display: flex;
    align-items: baseline;
    gap: 2px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #f9a825 0%, #ff7a59 100%);
    color: #0a1f44;
    border-radius: 18px;
    box-shadow:
        0 14px 36px rgba(249,168,37,0.45),
        0 4px 12px rgba(255,122,89,0.25),
        inset 0 1px 0 rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
}
.dp-sap-cert-badge-sign {
    font-size: 1.6rem;
    margin-right: 2px;
}
.dp-sap-cert-badge-num {
    font-size: 2.4rem;
    letter-spacing: -0.03em;
}
.dp-sap-cert-badge-pct {
    font-size: 1.3rem;
    font-weight: 800;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
    .dp-guarantee,
    .dp-sap-cert { padding: 28px 18px; }
    .dp-guarantee-inner,
    .dp-sap-cert-inner {
        gap: 18px;
        justify-content: center;
        text-align: center;
    }
    .dp-guarantee-txt,
    .dp-sap-cert-txt {
        text-align: center;
        min-width: 100%;
    }
    .dp-guarantee-ic { width: 56px; height: 56px; min-width: 56px; }
    .dp-guarantee-stat { padding: 10px 18px; }
    .dp-guarantee-stat-num { font-size: 1.8rem; }
    .dp-sap-cert-logo-wrap { width: 78px; height: 78px; }
    .dp-sap-cert-badge { padding: 12px 18px; }
    .dp-sap-cert-badge-num { font-size: 2rem; }
    .dp-sap-cert-badge-sign { font-size: 1.4rem; }
    .dp-sap-cert-badge-pct { font-size: 1.15rem; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .dp-guarantee-rings,
    .dp-guarantee-rings::after { animation: none !important; }
}

/* ============================================================
   FOOTER — CRÉATIF .dp-footer
   Navy très foncé + blobs cyan/gold + glassmorphism discret
   ============================================================ */
.dp-footer {
    position: relative;
    padding: 76px 24px 28px;
    background: linear-gradient(180deg, #061533 0%, #04112a 50%, #030c20 100%);
    color: #e2e8f0;
    overflow: hidden;
    isolation: isolate;
    font-family: 'Inter', 'Montserrat', sans-serif;
}
.dp-footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.dp-footer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
}
.dp-footer-blob--cyan {
    width: 520px; height: 520px;
    top: -220px; left: -120px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
}
.dp-footer-blob--gold {
    width: 460px; height: 460px;
    bottom: -180px; right: -100px;
    background: radial-gradient(circle, #f9a825 0%, transparent 70%);
}
.dp-footer-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    opacity: 0.55;
}
.dp-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

/* TOP : brand + cols */
.dp-footer-top {
    display: grid;
    grid-template-columns: 1.15fr 2.5fr;
    gap: 60px;
    margin-bottom: 44px;
}

/* BRAND BLOCK */
.dp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 340px;
}
.dp-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dp-footer-logo img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 14px rgba(6,182,212,0.3));
}
.dp-footer-logo-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.dp-footer-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
}
.dp-footer-logo-accent {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.dp-footer-logo-slogan {
    font-size: 0.82rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}
.dp-footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.dp-footer-brand-desc strong {
    color: #fff;
    font-weight: 700;
}

/* SOCIAL */
.dp-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.dp-footer-social-link {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dp-footer-social-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(6,182,212,0.3) 0%, rgba(18,104,220,0.3) 100%);
    border-color: rgba(6,182,212,0.5);
    color: #fff;
    box-shadow: 0 10px 24px rgba(6,182,212,0.25);
}

/* COLS */
.dp-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.dp-footer-col {
    min-width: 0;
}
.dp-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #06b6d4;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.dp-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4 0%, #f9a825 100%);
    border-radius: 2px;
}
.dp-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dp-footer-list li {
    display: block;
}
.dp-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    padding: 2px 0;
    position: relative;
    transition: color 0.22s ease, transform 0.22s ease;
    width: fit-content;
}
.dp-footer-link::before {
    content: '';
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #06b6d4 0%, #f9a825 100%);
    border-radius: 2px;
    position: absolute;
    left: 0; bottom: 0;
    transition: width 0.3s ease;
}
.dp-footer-link:hover {
    color: #fff;
    transform: translateX(3px);
}
.dp-footer-link:hover::before {
    width: 100%;
}
.dp-footer-link--pro {
    color: #f9a825;
    font-weight: 700;
}
.dp-footer-link--pro:hover {
    color: #ffd77e;
}
.dp-footer-link svg {
    flex-shrink: 0;
    color: #67e8f9;
    opacity: 0.8;
}

/* CONTACT col : phone hero */
.dp-footer-tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
    color: #f9a825;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.22s ease, transform 0.22s ease;
    letter-spacing: 0.01em;
}
.dp-footer-tel svg {
    color: #f9a825;
    flex-shrink: 0;
}
.dp-footer-tel:hover {
    color: #ffd77e;
    transform: translateX(3px);
}
.dp-footer-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    padding: 2px 0;
}
.dp-footer-meta svg {
    color: #67e8f9;
    flex-shrink: 0;
    opacity: 0.75;
}

/* Availability badge (override legacy) — juste point + texte */
.dp-footer-avail.availability-badge,
.dp-footer-avail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0;
}
.dp-footer-avail.availability-badge--open { color: #6ee7b7 !important; }
.dp-footer-avail.availability-badge--closed { color: #fbbf24 !important; }
.dp-footer-avail .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dp-footer-avail.availability-badge--open .dot {
    background: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.22) !important;
}
.dp-footer-avail.availability-badge--closed .dot {
    background: #fbbf24 !important;
    box-shadow: 0 0 0 4px rgba(251,191,36,0.22) !important;
}

/* DIVIDER ruban */
.dp-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(6,182,212,0.35) 20%, rgba(249,168,37,0.35) 80%, transparent 100%);
    margin: 4px 0 28px;
}

/* CITIES */
.dp-footer-cities {
    margin-bottom: 28px;
}
.dp-footer-cities-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
}
.dp-footer-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
    line-height: 1.5;
}
.dp-footer-cities-list a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.dp-footer-cities-list a:hover {
    color: #fff;
    background: rgba(6,182,212,0.12);
    border-color: rgba(6,182,212,0.3);
    transform: translateY(-1px);
}

/* BOTTOM BAR */
.dp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.dp-footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    max-width: 720px;
}
.dp-footer-copy strong {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}
.dp-footer-legal {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.dp-footer-legal-link {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.22s ease;
}
.dp-footer-legal-link:hover {
    color: #f9a825;
}
.dp-footer-legal-sep {
    color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
    .dp-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dp-footer-brand { max-width: 520px; }
}
@media (max-width: 720px) {
    .dp-footer { padding: 60px 20px 24px; }
    .dp-footer-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .dp-footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .dp-footer-copy { font-size: 0.78rem; }
    .dp-footer-cities-list a { font-size: 0.78rem; padding: 3px 9px; }
}
@media (max-width: 420px) {
    .dp-footer-blob--cyan { width: 360px; height: 360px; }
    .dp-footer-blob--gold { width: 320px; height: 320px; }
}

/* ============================================================
   HEADER — CRÉATIF .dp-header
   Top bar (logo + infos + tel + fb) + Navbar (menu + submenus)
   Préserve : #header, #mobileToggle, #navLinks, .nav-links, .has-submenu, .nav-submenu (hooks JS)
   ============================================================ */

/* Override legacy .header — header FIXE, toujours visible au scroll */
.dp-header.header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 0 !important;
    padding: 0 !important;
}
/* Compense la hauteur du header fixe — fallback si JS pas chargé.
   Le JS (syncHeaderPadding) écrase cette valeur avec la hauteur réelle au pixel près. */
body {
    padding-top: 132px;
}
@media (max-width: 1024px) { body { padding-top: 120px; } }
@media (max-width: 900px)  { body { padding-top: 70px; } }
@media (max-width: 640px)  { body { padding-top: 64px; } }
@media (max-width: 420px)  { body { padding-top: 60px; } }

/* ---------- TOP BAR (glass clair) ---------- */
.dp-header-top {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,31,68,0.06);
    position: relative;
    overflow: hidden;
}
.dp-header-top::before {
    content: '';
    position: absolute;
    top: -60px; left: 10%;
    width: 300px; height: 120px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.dp-header-top::after {
    content: '';
    position: absolute;
    bottom: -60px; right: 10%;
    width: 260px; height: 120px;
    background: radial-gradient(ellipse, rgba(249,168,37,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.dp-header-top-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* LOGO — override legacy .logo */
.dp-header-logo.logo {
    display: flex !important;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #0a1f44 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}
.dp-header-logo-img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(18,104,220,0.2));
}
.dp-header-logo-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.dp-header-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
    color: #0a1f44;
    letter-spacing: 0.02em;
}
.dp-header-logo-accent {
    color: #0a1f44;
    -webkit-text-fill-color: #0a1f44;
}
.dp-header-logo-slogan {
    font-size: 0.76rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(10,31,68,0.55);
    margin-top: 2px;
}

/* META (cluster droit) */
.dp-header-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* HORAIRES */
.dp-header-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    line-height: 1.35;
    font-size: 0.78rem;
}
.dp-header-hours-row {
    color: rgba(10,31,68,0.68);
}
.dp-header-hours-row strong {
    color: #0a1f44;
    font-weight: 700;
    margin-right: 4px;
}
.dp-header-avail.availability-badge,
.dp-header-avail {
    display: inline-flex;
    align-items: center;
    gap: 6px !important;
    margin-top: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: rgba(10,31,68,0.8);
    letter-spacing: 0;
}
.dp-header-avail.availability-badge--open { color: #047857 !important; }
.dp-header-avail.availability-badge--closed { color: #b45309 !important; }
.dp-header-avail .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dp-header-avail.availability-badge--open .dot {
    background: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.22) !important;
}
.dp-header-avail.availability-badge--closed .dot {
    background: #fbbf24 !important;
    box-shadow: 0 0 0 3px rgba(251,191,36,0.22) !important;
}

/* CTA TEL */
.dp-header-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px 9px 12px;
    background: linear-gradient(135deg, #f9a825 0%, #ffb84d 50%, #ff7a59 100%);
    color: #0a1f44;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    box-shadow:
        0 8px 20px rgba(249,168,37,0.35),
        0 3px 8px rgba(255,122,89,0.25),
        inset 0 1px 0 rgba(255,255,255,0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dp-header-tel:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(249,168,37,0.5),
        0 5px 12px rgba(255,122,89,0.35),
        inset 0 1px 0 rgba(255,255,255,0.6);
}
.dp-header-tel-ic {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: rgba(10,31,68,0.14);
}
.dp-header-tel-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}
.dp-header-tel-top {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,31,68,0.78);
    margin-bottom: 2px;
}
.dp-header-tel-num {
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

/* FACEBOOK */
.dp-header-fb {
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 11px;
    background: rgba(10,31,68,0.04) !important;
    border: 1px solid rgba(10,31,68,0.1);
    color: #1268dc !important;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.dp-header-fb:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1268dc 0%, #06b6d4 100%) !important;
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(18,104,220,0.3);
}

/* ---------- NAVBAR (clair) ---------- */
.dp-header-nav.navbar {
    background: rgba(255,255,255,0.95) !important;
    border-bottom: 1px solid rgba(10,31,68,0.08) !important;
    padding: 0 !important;
    /* IMPORTANT: pas de backdrop-filter ici — ça créerait un containing block
       et casserait position: fixed du menu mobile (.dp-header-links.nav-links) */
}
.dp-header-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dp-header-links.nav-links {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.dp-header-links.nav-links > li {
    position: relative;
}
.dp-header-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(10,31,68,0.78) !important;
    text-decoration: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: relative;
    transition: color 0.22s ease;
    letter-spacing: 0.01em;
}
.dp-header-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #1268dc 0%, #f9a825 100%);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}
.dp-header-link:hover,
.dp-header-link.active {
    color: #0a1f44 !important;
}
.dp-header-link:hover::after,
.dp-header-link.active::after {
    transform: translateX(-50%) scaleX(1);
}
.dp-header-chevron {
    transition: transform 0.25s ease;
    color: rgba(10,31,68,0.5);
}
.dp-header-item.has-submenu:hover .dp-header-chevron {
    transform: rotate(180deg);
    color: #1268dc;
}

/* SUBMENU dropdowns (clair) */
.dp-header-submenu.nav-submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 260px;
    padding: 10px !important;
    background: #ffffff !important;
    border: 1px solid rgba(10,31,68,0.08) !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 50px rgba(10,31,68,0.15), 0 4px 14px rgba(10,31,68,0.08) !important;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 999;
    margin: 0 !important;
}
/* Hover desktop uniquement (≥901px) — sur mobile c'est le clic qui toggle .open */
@media (min-width: 901px) {
    .dp-header-item.has-submenu:hover .dp-header-submenu,
    .dp-header-item.has-submenu:focus-within .dp-header-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.dp-header-submenu.nav-submenu li {
    display: block;
}
.dp-header-submenu.nav-submenu a {
    display: block;
    padding: 9px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(10,31,68,0.78) !important;
    text-decoration: none !important;
    border-radius: 9px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    background: transparent !important;
    border: 0 !important;
}
.dp-header-submenu.nav-submenu a:hover {
    background: rgba(18,104,220,0.08) !important;
    color: #0a1f44 !important;
    transform: translateX(3px);
}
.dp-header-submenu.nav-submenu a.dp-header-sub--pro,
.dp-header-submenu.nav-submenu .dp-header-sub--pro {
    color: #b8831a !important;
}
.dp-header-submenu.nav-submenu a.dp-header-sub--pro:hover {
    background: rgba(249,168,37,0.12) !important;
    color: #8a6311 !important;
}
.dp-header-submenu.nav-submenu a.dp-header-sub--all,
.dp-header-submenu.nav-submenu .dp-header-sub--all {
    color: #0891b2 !important;
    border-top: 1px solid rgba(10,31,68,0.08);
    margin-top: 6px;
    padding-top: 12px;
}

/* Submenu wide (Zones) : grille 2 colonnes */
.dp-header-submenu--wide.nav-submenu--wide {
    min-width: 440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.dp-header-submenu--wide li:last-child {
    grid-column: 1 / -1;
}

/* ---------- BURGER (mobile) ---------- */
/* High specificity + !important pour neutraliser style.css legacy */
.dp-header .dp-header-burger.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #1268dc 0%, #06b6d4 100%) !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    flex-direction: column !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 12px !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 6px 16px rgba(18,104,220,0.35) !important;
    z-index: 10 !important;
}
.dp-header .dp-header-burger.mobile-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2.5px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    margin: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.dp-header .dp-header-burger.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg) !important;
}
.dp-header .dp-header-burger.mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}
.dp-header .dp-header-burger.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg) !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .dp-header-top-inner { gap: 16px; }
    .dp-header-hours { display: none; }
    .dp-header-link { padding: 14px 12px; font-size: 0.84rem; }
    .dp-header-link::after { left: 12px; right: 12px; }
}

@media (max-width: 900px) {
    /* Navbar invisible — le burger est maintenant DANS le top bar (DOM déplacé) */
    .dp-header-nav.navbar {
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        overflow: visible !important;
        backdrop-filter: none !important;        /* CRITIQUE: backdrop-filter casse position: fixed des enfants */
        -webkit-backdrop-filter: none !important;
        contain: none !important;
        filter: none !important;
        transform: none !important;
        will-change: auto !important;
    }
    /* Idem pour le top bar : pas de containing block sur mobile */
    .dp-header-top,
    .dp-header.header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        contain: none !important;
        filter: none !important;
    }
    .dp-header-nav-inner {
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        position: static !important;
    }
    /* Burger dans le flux naturel du .dp-header-meta */
    .dp-header .dp-header-burger.mobile-toggle {
        display: flex !important;
        position: static !important;
        margin-left: 4px !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        z-index: 10 !important;
    }
    /* Nav-links menu : position fixed sous le top bar (header ~65-70px) */
    .dp-header-links.nav-links {
        display: flex !important;
        position: fixed !important;
        top: 65px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;     /* CRITIQUE: sinon les items se mettent en colonnes */
        align-items: stretch !important;
        gap: 0 !important;
        background: #ffffff !important;
        background-image: none !important;
        border-top: 1px solid rgba(10,31,68,0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 !important;
        z-index: 1001 !important;       /* au-dessus du header (z-index: 1000) */
    }
    .dp-header-links.nav-links.active {
        max-height: 85vh;
        overflow-y: auto;
        padding: 10px 0 !important;
        box-shadow: 0 20px 40px rgba(10,31,68,0.12);
    }
    .dp-header-links.nav-links > li {
        width: 100%;
    }
    .dp-header-link {
        padding: 14px 22px;
        width: 100%;
        border-bottom: 1px solid rgba(10,31,68,0.06);
    }
    .dp-header-link::after {
        display: none;
    }
    .dp-header-submenu.nav-submenu {
        display: none !important;           /* caché par défaut sur mobile */
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        min-width: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        background: rgba(10,31,68,0.03) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        transition: none !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    .dp-header-submenu--wide li:last-child {
        grid-column: auto;
    }
    /* Quand .open est ajouté au LI, le submenu apparaît */
    .dp-header-item.has-submenu.open > .dp-header-submenu {
        display: block !important;
        padding: 6px 0 !important;
    }
    /* Override ultra-spécifique pour neutraliser .nav-links li a { color: var(--white) } legacy de style.css */
    .dp-header .dp-header-links.nav-links li a,
    .dp-header .dp-header-links.nav-links .dp-header-submenu a,
    .dp-header .dp-header-links.nav-links .dp-header-submenu li a {
        color: #0a1f44 !important;
        background: transparent !important;
        background-image: none !important;
        text-align: center !important;
    }
    .dp-header .dp-header-links.nav-links .dp-header-submenu li a.dp-header-sub--pro {
        color: #b8831a !important;
    }
    .dp-header .dp-header-links.nav-links .dp-header-submenu li a.dp-header-sub--all {
        color: #1268dc !important;
    }
    .dp-header-submenu.nav-submenu a {
        padding: 10px 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .dp-header-top-inner {
        padding: 10px 16px;
        gap: 12px;
    }
    .dp-header-logo-img { width: 40px; height: 40px; }
    .dp-header-logo-name { font-size: 0.98rem; }
    .dp-header-logo-slogan { display: none; }
    .dp-header-meta { gap: 10px; }
    .dp-header-fb { display: none; }
    .dp-header-tel {
        padding: 7px 12px 7px 10px;
        gap: 8px;
    }
    .dp-header-tel-ic { width: 30px; height: 30px; }
    .dp-header-tel-ic svg { width: 16px; height: 16px; }
    .dp-header-tel-top { font-size: 0.58rem; }
    .dp-header-tel-num { font-size: 0.88rem; }
}

@media (max-width: 420px) {
    .dp-header-logo-txt { display: none; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .dp-header-tel,
    .dp-header-fb,
    .dp-header-chevron,
    .dp-header-submenu,
    .dp-header-link::after {
        transition: none !important;
    }
}

/* ============================================================
   TRUST BAR — CRÉATIF .dp-trust
   Bande 4 chiffres clés sous le hero
   ============================================================ */
.dp-trust {
    position: relative;
    padding: 44px 24px;
    background: linear-gradient(135deg, #fdf9f3 0%, #f5f7fc 55%, #fdf9f3 100%);
    border-top: 1px solid rgba(10,31,68,0.06);
    border-bottom: 1px solid rgba(10,31,68,0.06);
    overflow: hidden;
    isolation: isolate;
}
.dp-trust-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.dp-trust-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
}
.dp-trust-blob--cyan {
    width: 360px; height: 360px;
    top: -120px; left: 10%;
    background: radial-gradient(circle, rgba(6,182,212,0.35) 0%, transparent 70%);
}
.dp-trust-blob--gold {
    width: 340px; height: 340px;
    bottom: -120px; right: 8%;
    background: radial-gradient(circle, rgba(249,168,37,0.3) 0%, transparent 70%);
}
.dp-trust-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.dp-trust-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(10,31,68,0.08);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.dp-trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(10,31,68,0.1);
    border-color: rgba(10,31,68,0.14);
}

.dp-trust-ic {
    position: relative;
    width: 48px; height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    flex-shrink: 0;
}
.dp-trust-ic::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    opacity: 0.18;
    filter: blur(10px);
    z-index: -1;
}
.dp-trust-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.dp-trust-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.65rem;
    color: #0a1f44;
    letter-spacing: -0.01em;
}
.dp-trust-lbl {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(10,31,68,0.6);
    margin-top: 3px;
    line-height: 1.4;
}

/* Variantes couleurs */
.dp-trust-item--blue .dp-trust-ic {
    background: linear-gradient(135deg, #1268dc 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(18,104,220,0.3);
}
.dp-trust-item--blue .dp-trust-ic::after { background: #1268dc; }
.dp-trust-item--blue .dp-trust-num {
    background: linear-gradient(120deg, #1268dc 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dp-trust-item--coral .dp-trust-ic {
    background: linear-gradient(135deg, #ff7a59 0%, #ff9977 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,122,89,0.3);
}
.dp-trust-item--coral .dp-trust-ic::after { background: #ff7a59; }
.dp-trust-item--coral .dp-trust-num {
    background: linear-gradient(120deg, #ff7a59 0%, #e65a3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dp-trust-item--gold .dp-trust-ic {
    background: linear-gradient(135deg, #f9a825 0%, #ffb84d 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(249,168,37,0.35);
}
.dp-trust-item--gold .dp-trust-ic::after { background: #f9a825; }
.dp-trust-item--gold .dp-trust-num {
    background: linear-gradient(120deg, #b8831a 0%, #f9a825 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dp-trust-item--cyan .dp-trust-ic {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(6,182,212,0.3);
}
.dp-trust-item--cyan .dp-trust-ic::after { background: #06b6d4; }
.dp-trust-item--cyan .dp-trust-num {
    background: linear-gradient(120deg, #0891b2 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Responsive */
@media (max-width: 920px) {
    .dp-trust { padding: 36px 20px; }
    .dp-trust-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .dp-trust-num { font-size: 1.5rem; }
}
@media (max-width: 520px) {
    .dp-trust { padding: 30px 16px; }
    .dp-trust-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dp-trust-item {
        padding: 14px 16px;
        gap: 12px;
    }
    .dp-trust-ic { width: 42px; height: 42px; min-width: 42px; }
    .dp-trust-num { font-size: 1.4rem; }
    .dp-trust-lbl { font-size: 0.78rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dp-trust-item:hover { transform: none !important; }
}

/* ============================================================
   BREADCRUMB — fil d'Ariane SEO sur pages internes
   ============================================================ */
.dp-breadcrumb {
    background: linear-gradient(180deg, #fdf9f3 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(10,31,68,0.04);
    padding: 14px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
}
.dp-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #5a6a85;
}
.dp-breadcrumb a {
    color: #1268dc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.dp-breadcrumb a:hover {
    color: #06b6d4;
    text-decoration: underline;
}
.dp-breadcrumb-sep {
    color: #cfd6e4;
    font-weight: 700;
}
.dp-breadcrumb [aria-current="page"] {
    color: #0a1f44;
    font-weight: 700;
}
@media (max-width: 560px) {
    .dp-breadcrumb { padding: 12px 16px; font-size: 0.8rem; }
    .dp-breadcrumb-inner { gap: 6px; }
}

/* ============================================================
   CASES — Exemples d'interventions récentes (E-E-A-T)
   4 cartes éditoriales avec accent couleur par variante
   ============================================================ */
.dp-cases {
    position: relative;
    padding: 90px 22px 100px;
    background: #ffffff;
    isolation: isolate;
}
.dp-cases::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 14%, rgba(18,104,220,0.05) 0%, transparent 36%),
        radial-gradient(circle at 92% 86%, rgba(249,168,37,0.04) 0%, transparent 38%);
    pointer-events: none;
    z-index: 0;
}
.dp-cases-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.dp-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.dp-case {
    --dp-case-c: #1268dc;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(10,31,68,0.07);
    border-left: 4px solid var(--dp-case-c);
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 4px 14px rgba(10,31,68,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dp-case:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10,31,68,0.08);
}
.dp-case--blue  { --dp-case-c: #1268dc; }
.dp-case--cyan  { --dp-case-c: #06b6d4; }
.dp-case--gold  { --dp-case-c: #f9a825; }
.dp-case--coral { --dp-case-c: #ff7a59; }
.dp-case--green { --dp-case-c: #10b981; }

.dp-case-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.dp-case-pin {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--dp-case-c);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: color-mix(in srgb, var(--dp-case-c) 10%, transparent);
    padding: 5px 10px;
    border-radius: 999px;
}
.dp-case-date {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
}
.dp-case-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a1f44;
    margin: 0 0 14px;
    line-height: 1.3;
}
.dp-case-line {
    margin: 0 0 8px;
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.6;
}
.dp-case-line:last-child { margin-bottom: 0; }
.dp-case-line strong {
    color: var(--dp-case-c);
    font-weight: 700;
}

@media (max-width: 900px) {
    .dp-cases-grid { grid-template-columns: 1fr; gap: 18px; }
    .dp-cases { padding: 70px 22px 80px; }
}
@media (max-width: 560px) {
    .dp-cases { padding: 60px 18px 70px; }
    .dp-case { padding: 20px 22px; }
    .dp-case-title { font-size: 1.02rem; }
    .dp-case-line { font-size: 0.88rem; }
    .dp-case-head { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    .dp-case { transition: none !important; }
    .dp-case:hover { transform: none !important; }
}

/* ============================================================
   HERO — Variante PAGE SERVICE (image landscape 16:9)
   Les images de service sont 1280x720, le wrap portrait 4:5
   les recadre trop serrément. Cette variante utilise 4/3.
   ============================================================ */
.dp-hero-photo-wrap.dp-hero-photo-wrap--service {
    aspect-ratio: 4/3;
    max-height: 480px;
    transform: rotate(-1deg);
}
.dp-hero-photo-wrap.dp-hero-photo-wrap--service .dp-hero-photo {
    object-position: center center;
}
@media (max-width: 1100px) {
    .dp-hero-photo-wrap.dp-hero-photo-wrap--service {
        aspect-ratio: 16/10;
        max-height: 380px;
    }
}
@media (max-width: 768px) {
    .dp-hero-photo-wrap.dp-hero-photo-wrap--service {
        aspect-ratio: 16/10;
        max-height: 320px;
    }
}

/* ============================================================
   PAGE À PROPOS — Grille 6 valeurs (3 colonnes au lieu de 5)
   Override .dp-services-grid pour la section "Nos valeurs"
   ============================================================ */
.dp-services[aria-label="Nos valeurs"] .dp-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .dp-services[aria-label="Nos valeurs"] .dp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 560px) {
    .dp-services[aria-label="Nos valeurs"] .dp-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PERF MOBILE — désactive les animations infinies sur ≤768px
   pour éviter les repaints constants qui ralentissent le scroll
   ============================================================ */
@media (max-width: 768px) {
    .dp-hero::before,
    .dp-hero::after,
    .dp-blob,
    .dp-spark,
    .dp-hero-eyebrow .dot,
    .dp-hero-title .hl,
    .dp-hero-float,
    .dp-hero-photo-cap::before,
    .dp-trust-blob,
    .dp-process-line::before,
    .dp-cta-blob,
    .dp-zones::before,
    .dp-zones::after,
    .dp-map-wrap,
    .dp-why::before,
    .dp-why::after,
    .dp-faq::before,
    .dp-final-cta::before,
    .dp-final-cta::after,
    .dp-section-head::before {
        animation: none !important;
    }
    /* Pas de blur/backdrop-filter coûteux sur mobile */
    .dp-trust,
    .dp-trust-bg {
        animation: none !important;
    }
    /* Réduit les transitions hover (peu utiles sur tactile) */
    .dp-svc, .dp-svc::before, .dp-svc::after,
    .dp-trust-item, .dp-feat, .dp-power-card,
    .dp-step, .dp-process-step {
        transition: none !important;
    }
}
