:root {
    --red:        #dc2626;
    --red-light:  #ef4444;
    --red-soft:   #f87171;
    --red-dark:   #b91c1c;
    --dark:       #0f172a;
    --darker:     #0b1220;
    --slate:      #334155;
    --slate-light:#94a3b8;
    --light:      #f8fafc;
    --white:      #ffffff;

    --font: 'Inter', system-ui, -apple-system, sans-serif;

    --r-md: 0.75rem;
    --r-lg: 1.25rem;
    --r-xl: 1.75rem;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px -8px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
    --glow-red:  0 10px 35px -8px rgba(220, 38, 38, 0.55);

    --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
    --ease-door: cubic-bezier(0.77, 0, 0.18, 1);

    --color-primary:        var(--red);
    --color-primary-light:  var(--red-light);
    --color-primary-dark:   var(--red-dark);
    --color-dark:           var(--dark);
    --color-gray:           var(--slate);
    --color-gray-light:     var(--slate-light);
    --color-light:          var(--light);
    --color-bg:             #ffffff;
    --radius-lg:            var(--r-lg);
    --radius-xl:            var(--r-xl);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--slate);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--dark); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.relative { position: relative; }
.z-10 { position: relative; z-index: 10; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-primary { color: var(--red); }
.text-primary-light { color: var(--red-light); }
.text-gray-light { color: var(--slate-light); }
.font-black { font-weight: 900; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2.5rem; }

#doorIntro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
}
#doorIntro.open { pointer-events: none; }
#doorIntro.done { display: none; }
/* Portail déjà ouvert aujourd'hui → on le masque dès le chargement (pas de flash) */
html.door-skip #doorIntro { display: none !important; }

.door-panel {
    position: absolute;
    top: 0; bottom: 0;
    width: 50%;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, rgba(0,0,0,0) 1px 3px),
        linear-gradient(180deg, #232d3f 0%, #18212f 48%, #0c121d 100%);
    box-shadow: inset 0 0 110px rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    transition: transform 0.85s var(--ease-door);
    will-change: transform;
}
/* Cadre mouluré + traverses horizontales (panneaux de porte) */
.door-panel::before {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4);
    background:
        repeating-linear-gradient(180deg,
            transparent 0 128px,
            rgba(0,0,0,0.4) 128px 129px,
            rgba(255,255,255,0.06) 129px 130px);
    pointer-events: none;
}
.door-left  { left: 0; justify-content: flex-end; }
.door-right { right: 0; justify-content: flex-start; }

/* Poignées verticales (acier brossé) */
.door-handle {
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    width: 11px;
    height: 175px;
    border-radius: 6px;
    background: linear-gradient(90deg, #2c333f 0%, #aeb7c5 38%, #eef2f7 50%, #99a3b2 62%, #262c37 100%);
    box-shadow: 0 12px 24px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.55);
    z-index: 2;
}
/* embouts de fixation de la poignée */
.door-handle::before, .door-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, #20262f, #c2cad6 50%, #20262f);
}
.door-handle::before { top: 18px; }
.door-handle::after  { bottom: 18px; }
.door-left  .door-handle { right: 58px; }
.door-right .door-handle { left: 58px; }

/* Serrure à cylindre + trou de clé */
.door-lock {
    position: absolute;
    left: 49px;
    top: 74%;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #e8edf3, #aab2c0 45%, #5a626f 76%, #363d49);
    box-shadow: 0 6px 14px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.keyhole {
    position: relative;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #11151e;
}
.keyhole::after {
    content: '';
    position: absolute;
    top: 4px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: #11151e;
}

.door-edge {
    width: 14px;
    align-self: stretch;
    background: linear-gradient(180deg, #1e293b, #0f172a 50%, #1e293b);
    border-left: 1px solid rgba(255,255,255,0.07);
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.door-edge::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--red);
    box-shadow: 0 0 18px 2px rgba(220, 38, 38, 0.65);
    animation: seamPulse 1.6s ease-in-out infinite;
}
.door-left  .door-edge::after { right: -1px; }
.door-right .door-edge::after { left: -1px; }
@keyframes seamPulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

/* Logo coupé en deux : chaque moitié collée à son battant, part avec lui */
.door-logo-half {
    position: absolute;
    top: 29%;
    width: 195px;
    height: auto;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
    animation: brandIn 0.6s var(--ease-out) both;
}
.door-left  .door-logo-half { left: calc(100% - 98px); clip-path: inset(0 50% 0 0); }
.door-right .door-logo-half { left: -97px;             clip-path: inset(0 0 0 50%); }
@keyframes brandIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#doorIntro.open .door-left  { transform: translateX(-102%); }
#doorIntro.open .door-right { transform: translateX(102%); }

#mainHeader {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 0.9rem 0;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease,
                border-color 0.35s ease;
    border-bottom: 1px solid transparent;
}
#mainHeader.scrolled {
    padding: 0.55rem 0;
    background: rgba(11, 18, 32, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border-bottom-color: rgba(255,255,255,0.07);
    box-shadow: 0 10px 30px -12px rgba(0,0,0,0.45);
}

body.header-solid #mainHeader:not(.scrolled) {
    background: rgba(11, 18, 32, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
}
.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.nav-inner .logo { grid-column: 1; justify-self: start; }
.nav-inner .nav-links { grid-column: 2; justify-self: center; }
.nav-inner .nav-right { grid-column: 3; justify-self: end; }
.logo img { height: 58px; width: auto; transition: height 0.35s ease; }
#mainHeader.scrolled .logo img { height: 46px; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
    position: relative;
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 9999px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0.15rem;
    transform: translateX(-50%);
    width: 16px; height: 3px;
    border-radius: 2px;
    background: var(--red);
}
.nav-right { display: flex; align-items: center; gap: 0.9rem; }

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-pill::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(220,38,38,0.65); }
.btn-pill:hover::after { left: 130%; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 9999px;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.04);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-ghost.on-light { color: var(--red); border-color: rgba(220,38,38,0.4); background: transparent; }
.btn-ghost.on-light:hover { background: rgba(220,38,38,0.06); border-color: var(--red); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: 9999px;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(220,38,38,0.65); }
.btn-outline {
    color: var(--red);
    border: 1.5px solid rgba(220,38,38,0.4);
}
.btn-outline:hover { background: rgba(220,38,38,0.08); border-color: var(--red); transform: translateY(-2px); }

.nav-cta { padding: 0.7rem 1.5rem; font-size: 0.88rem; }

.mobile-menu-btn {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}
.mobile-menu-overlay {
    position: fixed; inset: 0;
    z-index: 880;
    background: rgba(11, 18, 32, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay a {
    color: rgba(255,255,255,0.85);
    font-size: 1.6rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: color 0.2s, background 0.2s, transform 0.25s var(--ease-out);
}
.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.active { color: #fff; background: rgba(220,38,38,0.18); transform: scale(1.05); }
@media (max-width: 1024px) {
    .nav-desktop, .nav-cta { display: none; }
    .mobile-menu-btn { display: inline-flex; }
}

#scrollProgress {
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--red), var(--red-soft));
    z-index: 1000;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(220,38,38,0.6);
}

.hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--darker);
    isolation: isolate;
}

@media (max-width: 820px), (max-height: 700px) {
    .hero { height: auto; min-height: 100svh; }
}
.hero-bg {
    position: absolute;
    inset: -8% 0;
    background: url('../img/background.webp') center 35% / cover no-repeat;
    z-index: -3;
    will-change: transform;
    animation: heroZoom 18s ease-out both;
}
@keyframes heroZoom {
    from { transform: scale(1.12); }
    to   { transform: scale(1); }
}
.hero-veil {
    position: absolute; inset: 0; z-index: -2;
    background:
        linear-gradient(180deg, rgba(11,18,32,0.85) 0%, rgba(11,18,32,0.55) 40%, rgba(11,18,32,0.92) 100%),
        radial-gradient(60% 50% at 50% 45%, transparent 0%, rgba(11,18,32,0.55) 100%);
}
.hero-glow {
    position: absolute; z-index: -1;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.28), transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}
.hero-glow.g1 { top: -180px; right: -120px; animation: glowFloat 9s ease-in-out infinite alternate; }
.hero-glow.g2 { bottom: -220px; left: -160px; width: 480px; height: 480px; opacity: 0.7; animation: glowFloat 11s ease-in-out infinite alternate-reverse; }
@keyframes glowFloat {
    from { transform: translate(0, 0); }
    to   { transform: translate(-30px, 30px); }
}

.hero-content { text-align: center; padding-top: 6rem; padding-bottom: 1.25rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.55rem 1.3rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge.inline {
    margin-bottom: 0;
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 700;
}
.pulse-dot {
    width: 9px; height: 9px;
    background: var(--red-light);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.97;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.hero-gradient-text {
    background: linear-gradient(270deg, #dc2626, #f87171, #fca5a5, #f87171, #dc2626);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    max-width: 640px;
    margin: 0 auto 1.75rem;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-cta .btn-pill { padding: 1.05rem 2.4rem; font-size: 1.02rem; }
.hero-cta .btn-ghost { padding: 1.05rem 2.2rem; font-size: 1.02rem; }

.hero-stats { margin-top: auto; padding-bottom: 1.75rem; }
.hero-stats-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    border-radius: var(--r-xl);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.hero-stat { text-align: center; padding: 1.3rem 1rem; position: relative; }
.hero-stat + .hero-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 22%; bottom: 22%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}
.hero-stat-value {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}
.hero-stat-value .accent { color: var(--red-light); text-shadow: 0 0 24px rgba(239,68,68,0.55); }
.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-top: 0.4rem;
}
@media (max-width: 820px) {
    .hero-stats-card { grid-template-columns: repeat(2, 1fr); }
    .hero-stat:nth-child(3)::before { display: none; }
    .hero-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

.scroll-cue {
    position: absolute;
    bottom: 0.9rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    animation: cueBounce 2.2s ease-in-out infinite;
}
@keyframes cueBounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.45; }
    50% { transform: translate(-50%, 7px); opacity: 0.9; }
}

.page-header {
    position: relative;
    background:
        radial-gradient(70% 80% at 80% 10%, rgba(220,38,38,0.14), transparent 60%),
        linear-gradient(180deg, var(--darker), var(--dark));
    padding: clamp(7.5rem, 13vw, 9.5rem) 0 clamp(2.75rem, 5vw, 4rem);
    text-align: center;
    overflow: hidden;
}
.page-header h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.page-header h1 span, .page-header h1 .text-primary { color: var(--red-light); }
.page-header p {
    color: var(--slate-light);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 640px;
    margin: 0 auto;
}
.page-header .hero-glow { opacity: 0.5; }
.page-header .page-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 9999px;
    padding: 0.45rem 1.15rem;
    color: var(--red-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.marquee-container, .marquee-section {
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}
.marquee-container::before, .marquee-section::before,
.marquee-container::after, .marquee-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before, .marquee-section::before { left: 0; background: linear-gradient(90deg, var(--darker), transparent); }
.marquee-container::after, .marquee-section::after { right: 0; background: linear-gradient(270deg, var(--darker), transparent); }
.marquee-track {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.marquee-container:hover .marquee-track,
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.42);
    transition: color 0.3s, text-shadow 0.3s;
    flex-shrink: 0;
    cursor: default;
}
.brand-item:hover {
    color: #fff;
    text-shadow: 0 0 28px rgba(220,38,38,0.55);
}

.py-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-light { background: var(--light); }
.bg-bg { background: #fff; }
.bg-dark-section {
    background:
        radial-gradient(80% 60% at 80% 0%, rgba(220,38,38,0.08), transparent 60%),
        linear-gradient(180deg, var(--darker), var(--dark));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(1.75rem, 3.5vw, 2.75rem); }
.section-head.align-left { text-align: left; margin-left: 0; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(220,38,38,0.07);
    border: 1px solid rgba(220,38,38,0.18);
    border-radius: 9999px;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.2rem;
}
.bg-dark-section .section-tag {
    color: var(--red-soft);
    background: rgba(220,38,38,0.12);
    border-color: rgba(220,38,38,0.3);
}
.section-title {
    font-size: clamp(2rem, 4.2vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.025em;
}
.section-title span { color: var(--red); }
.bg-dark-section .section-title { color: #fff; }
.bg-dark-section .section-title span { color: var(--red-light); }
.section-sub { margin-top: 1rem; font-size: 1.05rem; color: var(--slate-light); }

.reveal {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(5px);
    transition:
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-out),
        filter 0.8s var(--ease-out);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform, filter;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.spot-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: var(--r-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
    overflow: hidden;
}
.spot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
        rgba(220, 38, 38, 0.09), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.spot-card:hover::before { opacity: 1; }
.spot-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 38, 38, 0.22);
}
.spot-card > * { position: relative; }

.card-icon {
    width: 70px; height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease-out);
}
.spot-card:hover .card-icon { transform: scale(1.08) rotate(-5deg); }
.card-icon.sm { width: 52px; height: 52px; border-radius: 14px; font-size: 1.2rem; margin-bottom: 0; flex-shrink: 0; }

.spot-card h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.spot-card p { color: var(--slate-light); font-size: 0.95rem; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--red);
}
.card-link i { transition: transform 0.3s var(--ease-out); }
.spot-card:hover .card-link i { transform: translateX(5px); }

.spot-card.highlight {
    background: linear-gradient(150deg, var(--red), var(--red-dark));
    border-color: transparent;
}
.spot-card.highlight::before {
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.18), transparent 65%);
}
.spot-card.highlight h3, .spot-card.highlight .card-link { color: #fff; }
.spot-card.highlight p { color: rgba(255,255,255,0.85); }
.spot-card.highlight .card-icon { background: #fff; color: var(--red); box-shadow: 0 10px 30px -8px rgba(0,0,0,0.3); }
.highlight-badge {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
}

.spot-card.row-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.5rem;
}
.spot-card.row-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.spot-card.row-card p { font-size: 0.88rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px)  { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr; } }

.steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 820px) { .steps-wrap { grid-template-columns: 1fr; max-width: 420px; } }
.steps-wrap::before {
    content: '';
    position: absolute;
    top: 40px; left: 18%; right: 18%;
    border-top: 2px dashed rgba(255,255,255,0.14);
}
@media (max-width: 820px) { .steps-wrap::before { display: none; } }
.step { text-align: center; position: relative; }
.step-num {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    transform: rotate(5deg);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    position: relative;
    z-index: 1;
}
.step:nth-child(2) .step-num { transform: rotate(-5deg); }
.step:hover .step-num { transform: rotate(0) scale(1.1); box-shadow: 0 18px 45px -8px rgba(220,38,38,0.7); }
.step h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.6rem; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

.mini-guarantees {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 820px) { .mini-guarantees { grid-template-columns: repeat(2, 1fr); } }
.mini-g {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.mini-g:hover { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.3); transform: translateY(-3px); }
.mini-g i { color: var(--red-soft); font-size: 1.15rem; flex-shrink: 0; }
.mini-g strong { color: #fff; font-size: 0.85rem; display: block; line-height: 1.3; }
.mini-g span { color: rgba(255,255,255,0.55); font-size: 0.72rem; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    perspective: 1200px;
}
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
    cursor: pointer;
    background: var(--dark);
}
.project-card:hover { box-shadow: var(--shadow-lg); }
.project-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.project-card:hover img { transform: scale(1.07); }
.project-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(11,18,32,0.55) 62%, rgba(11,18,32,0.95) 100%);
}
.project-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.6rem;
    z-index: 2;
    transform: translateZ(40px);
}
.project-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(220,38,38,0.92);
    padding: 0.32rem 0.8rem;
    border-radius: 9999px;
    margin-bottom: 0.7rem;
    box-shadow: 0 6px 18px -4px rgba(220,38,38,0.6);
}
.project-info h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.35rem; }
.project-loc {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.project-loc i { color: var(--red-soft); }
.project-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 0.6rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out), opacity 0.45s;
}
.project-card:hover .project-desc { max-height: 110px; opacity: 1; }

.hidden-card { display: none !important; }

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.75rem;
}
.filter-btn {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(15,23,42,0.12);
    color: var(--slate);
    background: #fff;
    transition: all 0.25s var(--ease-out);
}
.filter-btn:hover { border-color: rgba(220,38,38,0.45); color: var(--red); transform: translateY(-2px); }
.filter-btn.active {
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: var(--glow-red);
}

.center-cta { text-align: center; margin-top: 3rem; }

.google-rating-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
    padding: 1.6rem 2.5rem;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.google-brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; color: var(--dark); }
.google-g-icon { width: 28px; height: 28px; }
.g-divider { width: 1px; height: 40px; background: rgba(15,23,42,0.1); }
@media (max-width: 640px) { .g-divider { display: none; } }
.g-score { display: flex; align-items: center; gap: 0.8rem; }
.g-number { font-size: 2.4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.g-stars { color: #FBBC05; letter-spacing: 2px; }
.g-link { font-size: 0.88rem; font-weight: 600; color: var(--slate-light); transition: color 0.2s; }
.g-link:hover { color: var(--red); }
.g-link strong { color: var(--dark); }

.review-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-lg);
    padding: 1.9rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(220,38,38,0.2); }
.review-google-mark { position: absolute; top: 1.5rem; right: 1.5rem; width: 22px; height: 22px; }
.review-head { display: flex; align-items: center; gap: 0.9rem; }
.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--dark); font-size: 0.98rem; }
.review-stars { color: #FBBC05; font-size: 0.75rem; letter-spacing: 2px; margin-top: 0.15rem; }
.review-text { color: var(--slate); font-size: 0.95rem; }

.review-cta {
    background: linear-gradient(150deg, var(--dark), #1e293b);
    border-color: transparent;
    justify-content: center;
}
.review-cta:hover { border-color: rgba(220,38,38,0.45); }
.review-cta-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220,38,38,0.18);
    color: var(--red-soft);
    font-size: 1.15rem;
}
.review-cta h3, .review-cta-title { color: #fff; font-size: 1.15rem; }
.review-cta p, .review-cta-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-soft);
    font-weight: 700;
    font-size: 0.88rem;
}
.review-cta-btn i { transition: transform 0.3s var(--ease-out); }
.review-cta:hover .review-cta-btn i { transform: translateX(5px); }

.zone-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 920px) { .zone-grid { grid-template-columns: 1fr; } }
.map-wrap {
    max-width: 560px;
    margin: 0 auto;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.45));
}
.map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--slate-light);
}
.map-legend > div { display: flex; align-items: center; gap: 0.5rem; }
.map-legend .sw { width: 12px; height: 12px; border-radius: 3px; }
.sw-main { background: rgba(220,38,38,0.25); border: 1px solid rgba(220,38,38,0.6); }
.sw-devis { background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.2); }
@keyframes svgPing { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.zone-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.zone-tile {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 1.7rem 1.2rem;
    text-align: center;
    transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.zone-tile:hover { border-color: rgba(220,38,38,0.45); background: rgba(220,38,38,0.06); transform: translateY(-4px); }
.zone-tile-value {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red-light);
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(239,68,68,0.4);
}
.zone-tile-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.zone-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-lg);
    padding: 1.9rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.zone-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(220,38,38,0.22); }
.zone-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(15,23,42,0.07);
}
.zone-num {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    flex-shrink: 0;
}
.zone-title { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.zone-hq {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 0.2rem;
}
.zone-hq i { margin-right: 0.3rem; }
.zone-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(15,23,42,0.1);
    color: var(--slate);
    background: var(--light);
    transition: all 0.2s;
    cursor: default;
}
.chip:hover { border-color: rgba(220,38,38,0.4); color: var(--red); background: rgba(220,38,38,0.05); }
.chip.hq {
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    border-color: transparent;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 18px -4px rgba(220,38,38,0.5);
}

.limitrophe-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.9rem;
}
@media (max-width: 1024px) { .limitrophe-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .limitrophe-grid { grid-template-columns: repeat(2, 1fr); } }
.limitrophe-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-md);
    padding: 1.2rem 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.limitrophe-card:hover { transform: translateY(-4px); border-color: rgba(220,38,38,0.3); box-shadow: var(--shadow-md); }
.lim-num { font-size: 1.3rem; font-weight: 900; color: var(--red); }
.lim-name { font-size: 0.78rem; font-weight: 600; color: var(--slate-light); margin-top: 0.25rem; }

.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-md);
    margin-bottom: 0.9rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: rgba(220,38,38,0.25); }
.faq-item[open] { border-color: rgba(220,38,38,0.35); box-shadow: var(--shadow-md); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--red); }
.faq-chevron {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220,38,38,0.08);
    color: var(--red);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out), background 0.25s, color 0.25s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--red); color: #fff; }
.faq-content {
    padding: 0 1.5rem 1.4rem;
    color: var(--slate-light);
    font-size: 0.95rem;
}

.urgence-band {
    position: relative;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    text-align: center;
    overflow: hidden;
}
.urgence-band .hero-glow { background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%); }
.urgence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.urgence-badge .dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
    animation: pulseDot 2s infinite;
}
.urgence-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.urgence-band p { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.25rem; }

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 900;
    padding: 1.25rem 3rem;
    border-radius: 2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-phone i { color: var(--red); }
.btn-phone::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    animation: phoneRing 2s infinite;
}
@keyframes phoneRing {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
    70% { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.btn-phone:hover { transform: translateY(-3px) scale(1.03); }

.final-cta {
    position: relative;
    background: linear-gradient(135deg, var(--dark), #1e293b);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-xl);
    padding: clamp(3rem, 6vw, 4.5rem) 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 600px; margin: 0 auto 2.25rem; }
.final-cta .hero-glow { opacity: 0.5; }
.final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (max-width: 920px) {
    .service-row { grid-template-columns: 1fr; }
    .service-row .service-media { order: -1 !important; }
}
.service-row + .service-row { border-top: 1px solid rgba(15,23,42,0.06); }
.service-row h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}
.service-row h2 span { color: var(--red); }
.service-row .svc-lead { color: var(--slate-light); margin-bottom: 1.5rem; }

.service-media {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}
.service-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.service-media:hover img { transform: scale(1.05); }
.service-media .media-badge {
    position: absolute;
    bottom: 1.2rem; left: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11,18,32,0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
}
.service-media .media-badge i { color: var(--red-soft); }

.list-check {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.9rem;
    margin-bottom: 1.75rem;
}
@media (max-width: 480px) { .list-check { grid-template-columns: 1fr; } }
.list-check > div {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate);
    background: var(--light);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    transition: border-color 0.2s, color 0.2s;
}
.list-check > div:hover { border-color: rgba(220,38,38,0.35); color: var(--red); }
.list-check i { color: var(--red); font-size: 0.75rem; }

.service-row.dark-row {
    background: linear-gradient(150deg, var(--dark), #1e293b);
    border-radius: var(--r-xl);
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}
.dark-row h2 { color: #fff; }
.dark-row h2 span { color: var(--red-light); }
.dark-row .svc-lead { color: rgba(255,255,255,0.7); }
.dark-row .list-check > div {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
}
.dark-row .list-check > div:hover { border-color: rgba(220,38,38,0.45); color: #fff; }
.dark-row .list-check i { color: var(--red-soft); }

.urgence-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 2rem;
}
.urgence-panel h3 { color: #fff; font-size: 1.15rem; margin-bottom: 1.25rem; }
.urgence-panel h3 i { color: var(--red-soft); margin-right: 0.5rem; }
.urgence-spec { padding: 0.85rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.urgence-spec strong { color: #fff; display: block; font-size: 0.95rem; }
.urgence-spec span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: var(--r-lg);
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(220,38,38,0.25); }
.price-card.popular {
    background: linear-gradient(150deg, var(--dark), #1e293b);
    border: 1.5px solid rgba(220,38,38,0.55);
    box-shadow: 0 25px 60px -15px rgba(220,38,38,0.3);
}
.popular-badge {
    position: absolute;
    top: 0; right: 1.5rem;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    box-shadow: var(--glow-red);
}
.price-title { font-size: 1.5rem; font-weight: 900; color: var(--dark); }
.price-card.popular .price-title { color: #fff; }
.price-desc { font-size: 0.85rem; font-weight: 600; color: var(--slate-light); margin: 0.3rem 0 1.3rem; }
.price-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--red);
    padding: 0.9rem 0;
    border-top: 1px solid rgba(15,23,42,0.07);
    border-bottom: 1px solid rgba(15,23,42,0.07);
    margin-bottom: 1.3rem;
}
.price-card.popular .price-amount { border-color: rgba(255,255,255,0.1); color: var(--red-soft); }
.feature-list { flex: 1; margin-bottom: 1.75rem; }
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    padding: 0.45rem 0;
    color: var(--slate);
}
.price-card.popular .feature-item { color: rgba(255,255,255,0.85); }
.feature-item i { font-size: 0.75rem; color: var(--red); width: 16px; flex-shrink: 0; }
.price-card.popular .feature-item i { color: var(--red-soft); }
.feature-item.disabled { opacity: 0.4; }
.feature-item.disabled i { color: var(--slate-light); }

.marques-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    max-width: 860px;
    margin: 0 auto;
}
.marque-chip {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    padding: 0.8rem 1.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.14);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.45);
    transition: all 0.3s var(--ease-out);
    cursor: default;
}
.marque-chip:hover {
    color: #fff;
    -webkit-text-stroke-color: transparent;
    border-color: rgba(220,38,38,0.55);
    text-shadow: 0 0 26px rgba(220,38,38,0.55);
    transform: translateY(-3px);
}

.contact-page-bg {
    position: relative;
    background:
        linear-gradient(180deg, rgba(11,18,32,0.93) 0%, rgba(11,18,32,0.78) 45%, rgba(11,18,32,0.96) 100%),
        url('../img/background.webp') center / cover no-repeat;
    padding: clamp(7.5rem, 13vw, 9.5rem) 0 clamp(3.5rem, 6vw, 5rem);
    overflow: hidden;
}
@media (min-width: 921px) {
    .contact-page-bg { background-attachment: scroll, fixed; }
}

.contact-page-bg::before, .contact-page-bg::after {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.24), transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}
.contact-page-bg::before { top: -160px; right: -130px; }
.contact-page-bg::after { bottom: -200px; left: -150px; opacity: 0.6; }
.contact-grid { position: relative; z-index: 1; }

.contact-page-bg .contact-title { color: #fff; text-shadow: 0 10px 40px rgba(0,0,0,0.35); }
.contact-page-bg .contact-title span { color: var(--red-light); }
.contact-page-bg .contact-desc { color: rgba(255,255,255,0.72); }
.contact-page-bg .pill-badge {
    color: var(--red-soft);
    background: rgba(220,38,38,0.14);
    border-color: rgba(220,38,38,0.35);
}
.contact-page-bg .info-card {
    background: rgba(15,23,42,0.55);
    border-color: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    box-shadow: 0 20px 45px -18px rgba(0,0,0,0.5);
}
.contact-page-bg .info-card:hover { border-color: rgba(220,38,38,0.45); box-shadow: 0 24px 55px -18px rgba(0,0,0,0.6); }
.contact-page-bg .info-value-large, .contact-page-bg .info-value-normal { color: #fff; }
.contact-page-bg .info-subtext { color: rgba(255,255,255,0.55); }
.contact-page-bg .map-link { color: var(--red-soft); }
.contact-page-bg .map-link:hover { color: #fff; }
.contact-page-bg .info-icon-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
}

.contact-page-bg .glass-form-wrapper {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
.contact-page-bg .form-title { color: #fff; }
.contact-page-bg .form-sub { color: rgba(255,255,255,0.55); }
.contact-page-bg .input-group label { color: rgba(255,255,255,0.85); }
.contact-page-bg .input-icon { color: rgba(255,255,255,0.4); }
.contact-page-bg .glass-input {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.14);
    color: #fff;
}
.contact-page-bg .glass-input::placeholder { color: rgba(255,255,255,0.4); }
.contact-page-bg .glass-input:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(220,38,38,0.18);
}
.contact-page-bg select.glass-input option { color: #0f172a; }
.contact-page-bg .select-wrapper::after { color: rgba(255,255,255,0.5); }
.contact-page-bg .rgpd-consent label { color: rgba(255,255,255,0.7); }
.contact-page-bg .rgpd-consent a { color: var(--red-soft); }
.contact-page-bg altcha-widget {
    --altcha-color-base: rgba(255,255,255,0.05);
    --altcha-color-border: rgba(255,255,255,0.14);
    --altcha-color-text: #fff;
}
.contact-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(220,38,38,0.07);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.1rem;
    margin-bottom: 1.4rem;
}
.pill-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}
.contact-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.contact-title span { color: var(--red); }
.contact-desc { color: var(--slate-light); max-width: 460px; margin-bottom: 2.25rem; font-size: 1.05rem; }

.info-card {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-lg);
    padding: 1.7rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(220,38,38,0.22); }
.info-icon-base {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.info-icon-primary {
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    color: #fff;
    box-shadow: var(--glow-red);
}
.info-icon-secondary {
    background: linear-gradient(150deg, var(--dark), #1e293b);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.info-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.35rem;
}
.info-value-large { font-size: 1.6rem; font-weight: 900; color: var(--dark); line-height: 1.15; }
.info-value-normal { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.5; }
.info-subtext { font-size: 0.84rem; color: var(--slate-light); margin-top: 0.4rem; }
.map-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    margin-top: 0.6rem;
    transition: color 0.2s;
}
.map-link:hover { color: var(--red-dark); }

.glass-form-wrapper {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    position: relative;
    overflow: hidden;
}
.glass-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red-light), var(--red-dark));
}
.form-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 0.35rem; }
.form-sub { font-size: 0.88rem; color: var(--slate-light); margin-bottom: 1.75rem; }

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
@media (max-width: 560px) { .input-row { grid-template-columns: 1fr; } }
.input-group { margin-bottom: 1.1rem; }
.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.45rem;
}
.input-relative { position: relative; }
.input-icon {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    font-size: 0.9rem;
    pointer-events: none;
}
.glass-input {
    width: 100%;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--light);
    border: 1.5px solid rgba(15,23,42,0.1);
    border-radius: var(--r-md);
    padding: 0.9rem 1rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    appearance: none;
}
.input-relative .glass-input { padding-left: 2.6rem; }
.glass-input::placeholder { color: #9aa3b2; }
.glass-input:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}
textarea.glass-input { resize: vertical; min-height: 120px; }

.select-wrapper { position: relative; }
.select-wrapper::after {
    content: '\25BE';
    position: absolute;
    right: 1.1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    pointer-events: none;
}

.rgpd-consent label { font-weight: 400; color: var(--slate-light); }
.rgpd-consent a { color: var(--red); }
.rgpd-consent input[type="checkbox"] { accent-color: var(--red); width: 16px; height: 16px; }

.glass-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    padding: 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
    margin-top: 1.25rem;
}
.glass-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(220,38,38,0.65); }

.altcha-dark { margin: 1.25rem 0 0.25rem; }
altcha-widget {
    --altcha-border-width: 1.5px;
    --altcha-color-border: rgba(15,23,42,0.1);
    --altcha-color-base: #f8fafc;
    --altcha-color-text: #0f172a;
    --altcha-border-radius: 12px;
    --altcha-max-width: 100%;
}

.legal-section { max-width: 780px; margin: 0 auto 2.75rem; }
.legal-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(15,23,42,0.08);
}
.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px; height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-right: 0.6rem;
    box-shadow: var(--glow-red);
}
.legal-section p, .legal-section li { color: var(--slate); font-size: 0.95rem; margin-bottom: 0.75rem; }
.legal-section ul { padding-left: 1.2rem; }
.legal-section ul li { list-style: disc; }
.legal-section ul li::marker { color: var(--red); }
.legal-section a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal-box {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.07);
    border-left: 4px solid var(--red);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin: 1rem 0;
}

.bg-blob-1, .bg-blob-2 {
    position: fixed;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.2), transparent 65%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.bg-blob-1 { top: -180px; right: -160px; }
.bg-blob-2 { bottom: -180px; left: -160px; }
.content-z {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(80% 60% at 50% 0%, rgba(220,38,38,0.07), transparent 60%),
        var(--darker);
    color: #fff;
    padding: 8rem 1.5rem 4rem;
}
.error-illustration { width: min(280px, 60vw); margin-bottom: 1.5rem; }
.error-illustration svg { width: 100%; height: auto; display: block; }
.error-number {
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(270deg, #dc2626, #f87171, #fca5a5, #f87171, #dc2626);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}
.error-title { font-size: clamp(1.5rem, 4vw, 2.4rem); color: #fff; margin: 1rem 0; }
.error-text { color: var(--slate-light); max-width: 480px; margin-bottom: 2rem; }
.error-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.error-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.error-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.bg-blob-red {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.5), transparent 70%);
    pointer-events: none;
}
.dots-pattern, .dots-pattern-light, .hero-bg-dots { background-image: none; }

footer {
    background: var(--darker);
    color: var(--slate-light);
    padding: 4.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }
footer h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
footer h4 .red, footer h4 .text-primary { color: var(--red-light); }
footer p { font-size: 0.9rem; }
.footer-logo { height: 64px; width: auto; margin-bottom: 1.2rem; }
.footer-link {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.92rem;
    color: var(--slate-light);
    transition: color 0.2s, padding-left 0.25s var(--ease-out);
}
.footer-link:hover { color: #fff; padding-left: 0.45rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}
.by-aks { color: var(--slate-light); transition: color 0.2s; }
.by-aks:hover { color: #fff; }

.floating-phone {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 850;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    box-shadow: var(--glow-red);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    animation: floatPulse 2.6s infinite;
}
.floating-phone:hover { transform: translateY(-3px) scale(1.04); }
@keyframes floatPulse {
    0%   { box-shadow: var(--glow-red), 0 0 0 0 rgba(220,38,38,0.45); }
    70%  { box-shadow: var(--glow-red), 0 0 0 14px rgba(220,38,38,0); }
    100% { box-shadow: var(--glow-red), 0 0 0 0 rgba(220,38,38,0); }
}
@media (max-width: 640px) {
    .floating-phone .phone-text { display: none; }
    .floating-phone {
        width: 56px;
        height: 56px;
        padding: 0;
        gap: 0;
        justify-content: center;
        font-size: 1.25rem;
    }
}

.transition-fade { transition: opacity 0.25s ease; opacity: 1; }
html.is-animating .transition-fade { opacity: 0; }

/* ============================================================
   POPUP RAPPEL - bandeau bas (style cookie : large et court)
   ============================================================ */
.cb-bar {
    position: fixed;
    left: 1.5rem; right: 1.5rem;
    bottom: 1.5rem;
    z-index: 950;
    margin: 0 auto;
    max-width: 880px;
    background:
        radial-gradient(120% 200% at 92% 0%, rgba(220,38,38,0.14), transparent 55%),
        linear-gradient(180deg, var(--darker), var(--dark));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
    padding: 0.85rem 2.6rem 0.85rem 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.45s var(--ease-out), visibility 0.4s;
    pointer-events: none;
}
.cb-bar.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

/* Masque le bouton téléphone flottant quand le popup est ouvert */
body.cb-open .floating-phone { opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }

.cb-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cb-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
}

.cb-msg { flex: 1 1 auto; min-width: 0; text-align: left; }
.cb-msg strong { display: block; color: #fff; font-size: 1rem; font-weight: 800; line-height: 1.2; }
.cb-msg span { display: block; color: rgba(255,255,255,0.62); font-size: 0.84rem; line-height: 1.4; margin-top: 0.15rem; }
.cb-msg a { color: var(--red-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.cb-form { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.cb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cb-field { position: relative; }
.cb-field-icon {
    position: absolute;
    left: 0.85rem; top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    font-size: 0.9rem;
    pointer-events: none;
}
.cb-field input {
    width: 175px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    padding: 0.7rem 0.8rem 0.7rem 2.3rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.cb-field input::placeholder { color: rgba(255,255,255,0.4); font-weight: 400; }
.cb-field input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.18);
}
.cb-submit {
    white-space: nowrap;
    font-weight: 800;
    font-size: 0.92rem;
    color: #fff;
    padding: 0.75rem 1.4rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.cb-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(220,38,38,0.65); }
.cb-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }

.cb-close {
    position: absolute;
    top: 0.6rem; right: 0.6rem;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--slate-light);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s, background 0.2s;
    z-index: 2;
}
.cb-close:hover { color: #fff; background: rgba(255,255,255,0.16); }

.cb-error {
    color: #fca5a5;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0 0;
    text-align: center;
}
.cb-error:empty { display: none; }

/* État succès (inline, court) */
.cb-success { display: none; align-items: center; gap: 0.6rem; color: #fff; font-weight: 700; font-size: 1rem; }
.cb-success i { color: #22c55e; font-size: 1.3rem; }
.cb-bar.is-done .cb-icon,
.cb-bar.is-done .cb-msg,
.cb-bar.is-done .cb-form { display: none; }
.cb-bar.is-done .cb-success { display: flex; }
.cb-bar.is-done .cb-error { display: none; }

/* Bouton d'appel flottant en bas à gauche (apparaît à la fermeture du bandeau) */
.cb-fab {
    position: fixed;
    bottom: 1.5rem; left: 1.5rem;
    z-index: 850;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    background: linear-gradient(135deg, var(--red-light), var(--red-dark));
    box-shadow: var(--glow-red);
    transform: scale(0) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out), opacity 0.3s ease, filter 0.2s ease;
}
.cb-fab.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
    animation: floatPulse 2.6s infinite 0.5s;
}
.cb-fab.show:hover { transform: scale(1.08); filter: brightness(1.12); }
@media (max-width: 640px) {
    .cb-fab { width: 50px; height: 50px; font-size: 1.1rem; }
}
/* Icône "appel entrant" : combiné + flèche qui descend vers lui */
.cb-fab-ic { position: relative; display: inline-flex; }
.cb-fab-arrow {
    position: absolute;
    top: -0.55em; right: -0.55em;
    font-size: 0.55em;
    transform: rotate(45deg);
    animation: cbArrowIn 1.4s ease-in-out infinite;
}
@keyframes cbArrowIn {
    0%   { top: -0.85em; right: -0.85em; opacity: 0; }
    25%  { opacity: 1; }
    65%  { top: -0.05em; right: -0.05em; opacity: 1; }
    80%  { top: -0.05em; right: -0.05em; opacity: 0; }
    100% { top: -0.85em; right: -0.85em; opacity: 0; }
}

/* Empilage sur petits écrans (reste compact) */
@media (max-width: 720px) {
    .cb-bar { padding: 1rem 1rem 0.9rem; }
    .cb-bar-inner { flex-wrap: wrap; }
    .cb-msg { flex-basis: calc(100% - 56px); padding-right: 1.5rem; }
    .cb-form { width: 100%; }
    .cb-field { flex: 1 1 auto; }
    .cb-field input { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    #doorIntro { display: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
    .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
    .hero-bg { animation: none; }
}

@media print {
    #mainHeader, .floating-phone, footer, .urgence-band, #doorIntro, #scrollProgress { display: none !important; }
    body { background: #fff; color: #000; }
}
