/* ============================================
   BUSINESS DOM — Design System & Styles
   Corporate Premium — Domiciliation d'entreprise
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Colors — base */
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Brand — tricolore subtil */
    --bd-red: #C9171F;
    --bd-red-dark: #A8131A;
    --bd-red-glow: rgba(201, 23, 31, 0.15);
    --bd-blue: #1B3D7A;
    --bd-blue-dark: #142d5a;

    /* Functional */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-dark: var(--black);
    --bg-dark-alt: var(--gray-900);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-500);
    --text-inverse: var(--white);
    --border: var(--gray-200);
    --border-light: var(--gray-100);

    /* Typography */
    --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1240px;
    --container-padding: 24px;

    /* Radius — sharp */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    --shadow-red: 0 8px 24px rgba(201,23,31,0.25);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration: 0.3s;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hide-mobile { display: inline; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--bd-red);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: background var(--duration) var(--ease),
                padding var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}

.nav--scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.nav__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav__logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    transition: color var(--duration) var(--ease);
    white-space: nowrap;
}

.nav--scrolled .nav__logo-text { color: var(--black); }

.nav__links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.nav__links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    transition: color var(--duration) var(--ease);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bd-red);
    transition: width var(--duration) var(--ease);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav--scrolled .nav__links a { color: var(--gray-700); }
.nav--scrolled .nav__links a:hover { color: var(--black); }

.nav__actions { display: flex; gap: 10px; align-items: center; }

/* ============================================
   NAV — UTILITY MENU (burger dropdown)
   Refined dropdown for client area + quick links
   ============================================ */
.nav__menu {
    position: relative;
}

.nav__menu-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
    color: var(--white);
}

.nav__menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
}

.nav--scrolled .nav__menu-btn,
.nav--solid .nav__menu-btn {
    color: var(--gray-800);
    border-color: var(--border);
}

.nav--scrolled .nav__menu-btn:hover,
.nav--solid .nav__menu-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

/* Bars animation (3 lines → X when open) */
.nav__menu-bars {
    width: 16px;
    height: 12px;
    position: relative;
}

.nav__menu-bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.4, 0.02, 0.2, 1),
                opacity 0.2s var(--ease),
                top 0.35s cubic-bezier(0.4, 0.02, 0.2, 1);
}

.nav__menu-bars span:nth-child(1) { top: 0; }
.nav__menu-bars span:nth-child(2) { top: 5px; }
.nav__menu-bars span:nth-child(3) { top: 10px; }

.nav__menu.is-open .nav__menu-bars span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.nav__menu.is-open .nav__menu-bars span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__menu.is-open .nav__menu-bars span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}

/* Open state — button background */
.nav__menu.is-open .nav__menu-btn {
    background: var(--bd-red);
    color: var(--white);
    border-color: var(--bd-red);
}

/* Dropdown panel */
.nav__menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 320px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(10, 10, 14, 0.14),
                0 4px 12px rgba(10, 10, 14, 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0.22s;
    z-index: 1100;
}

.nav__menu.is-open .nav__menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

/* Tiny pointer / arrow above the panel */
.nav__menu-panel::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transform: rotate(45deg);
}

/* ---------- Header ---------- */
.nav__menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 16px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
}

.nav__menu-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.nav__menu-avatar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 11px;
    height: 11px;
    background: var(--bd-red);
    border: 2px solid var(--white);
    border-radius: 50%;
}

.nav__menu-greet {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.nav__menu-greet strong {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.nav__menu-greet span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

/* ---------- Primary CTA ---------- */
.nav__menu-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bd-red);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
    margin: 0 6px 10px;
}

.nav__menu-cta:hover {
    background: var(--bd-red-dark);
    transform: translateY(-1px);
}

.nav__menu-cta svg {
    transition: transform 0.2s var(--ease);
}

.nav__menu-cta:hover svg {
    transform: translateX(3px);
}

/* ---------- Shortcuts grid (4 quick links) ---------- */
.nav__menu-shortcuts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 0 6px 8px;
}

.nav__menu-shortcut {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s var(--ease);
    border: 1px solid transparent;
}

.nav__menu-shortcut:hover {
    background: var(--white);
    color: var(--bd-red);
    border-color: var(--bd-red-glow);
    transform: translateY(-1px);
}

.nav__menu-shortcut svg {
    color: inherit;
    opacity: 0.85;
}

.nav__menu-shortcut span {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

/* ---------- Divider ---------- */
.nav__menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 4px 14px;
}

/* ---------- Secondary links ---------- */
.nav__menu-links {
    padding: 4px 6px 6px;
    display: flex;
    flex-direction: column;
}

.nav__menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.15s var(--ease), color 0.15s var(--ease);
    position: relative;
}

.nav__menu-links a svg {
    color: var(--text-secondary);
    opacity: 0.7;
    flex-shrink: 0;
    transition: color 0.15s var(--ease), opacity 0.15s var(--ease);
}

.nav__menu-links a:hover {
    background: var(--gray-50);
    color: var(--bd-red);
}

.nav__menu-links a:hover svg {
    color: var(--bd-red);
    opacity: 1;
}

.nav__menu-links a small {
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ---------- Footer ---------- */
.nav__menu-footer {
    margin-top: 6px;
    padding: 12px 14px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-top: 1px solid var(--border-light);
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: -8px;
}

.nav__menu-footer span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.nav__menu-footer a {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bd-red);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav__menu-footer a:hover {
    gap: 8px;
}

/* Mobile — hide the desktop dropdown panel (mobile uses the existing fullscreen menu) */
@media (max-width: 768px) {
    .nav__menu { display: none; }
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration) var(--ease);
}
.nav--scrolled .nav__burger span { background: var(--black); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0a0a0a;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 88px 28px 36px;
    padding-bottom: max(36px, env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__links li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu__links li:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu__links a {
    display: flex;
    align-items: center;
    padding: 18px 4px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.3px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu__links a:hover,
.mobile-menu__links a:active { color: var(--white); padding-left: 8px; }

/* Sépare les CTAs du reste */
.mobile-menu__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 28px;
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mobile-menu__cta--ghost {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--white);
}
.mobile-menu__cta--ghost:active { background: rgba(255,255,255,0.06); }
.mobile-menu__cta--primary {
    background: var(--bd-red);
    border: 1.5px solid var(--bd-red);
    color: var(--white);
}
.mobile-menu__cta--primary:active { background: var(--bd-red-dark); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-align: center;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--bd-red);
    color: var(--white);
    border-color: var(--bd-red);
}
.btn--primary:hover {
    background: var(--bd-red-dark);
    border-color: var(--bd-red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

.btn--dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn--dark:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}
.btn--ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }

.btn--sm { padding: 10px 20px; font-size: var(--text-xs); }
.btn--lg { padding: 16px 36px; font-size: var(--text-base); }
.btn--full { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    /* Layered overlays for the new Arc de Triomphe freeze:
       1. Vertical gradient — stronger top & bottom for nav/CTA legibility
       2. Radial vignette — gentle center-darken behind the title (Arc has sun glow centered) */
    background:
        radial-gradient(ellipse at center 45%,
            rgba(10,10,14,0.35) 0%,
            rgba(10,10,14,0.12) 35%,
            transparent 70%
        ),
        linear-gradient(180deg,
            rgba(10,10,14,0.55) 0%,
            rgba(10,10,14,0.25) 35%,
            rgba(10,10,14,0.40) 65%,
            rgba(10,10,14,0.75) 100%
        );
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

/* ── Easing hero : démarre imperceptiblement, s'ouvre en douceur ── */
:root { --hero-ease: cubic-bezier(0.4, 0, 0.6, 1); }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    transition: opacity 2.8s var(--hero-ease);
}
.hero__badge.is-visible { opacity: 1; }

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bd-red);
    box-shadow: 0 0 8px var(--bd-red-glow);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 24px;
    opacity: 0;
    transition: opacity 3s var(--hero-ease);
}
.hero__title.is-visible { opacity: 1; }

.hero__title-accent {
    font-style: italic;
    font-weight: 500;
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 3s var(--hero-ease);
}
.hero__tagline.is-visible { opacity: 1; }

.hero__subtitle {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto 48px;
    opacity: 0;
    transition: opacity 3s var(--hero-ease);
}
.hero__subtitle.is-visible { opacity: 1; }

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity 2.5s var(--hero-ease);
}
.hero__cta--visible { opacity: 1; }

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

.hero__scroll-line {
    width: 100%;
    height: 30%;
    background: var(--white);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(30px); }
}

/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-header__tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bd-red);
    margin-bottom: 20px;
    position: relative;
    padding-left: 28px;
}

.section-header__tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--bd-red);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header__desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust__grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
}

.trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.trust__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.trust__number-unit {
    font-size: 0.5em;
    color: var(--bd-red);
    font-weight: 600;
}

.trust__label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.trust__divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* ============================================
   SERVICES PHARES
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 48px 36px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bd-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    color: var(--bd-red);
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bd-red-glow);
    color: var(--bd-red);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ============================================
   PACKS
   ============================================ */
.packs {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.packs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pack-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
}

.pack-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.pack-card--featured {
    border: 2px solid var(--bd-red);
    background: linear-gradient(180deg, var(--white) 0%, #fff8f8 100%);
}

.pack-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--bd-red);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 100px;
    text-transform: uppercase;
}

.pack-card__name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pack-card__tagline {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 28px;
    min-height: 42px;
}

.pack-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.pack-card__price-from {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-right: 6px;
}

.pack-card__price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.pack-card__price-period {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pack-card__price-note {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.pack-card__features {
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    flex: 1;
}

.pack-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.5;
}

.pack-card__features li svg {
    flex-shrink: 0;
    color: var(--bd-red);
    margin-top: 2px;
}

/* ============================================
   ADRESSES + MAP
   ============================================ */
.addresses {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: var(--white);
}

.addresses .section-header__title { color: var(--white); }
.addresses .section-header__desc { color: rgba(255,255,255,0.7); }

.addresses__map {
    margin-bottom: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.addresses__svg-map {
    width: 100%;
    height: auto;
    display: block;
}

.map__pin {
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.map__pin:hover { transform: scale(1.1); transform-origin: center; }
.map__pin:hover circle:first-child { fill: rgba(201,23,31,0.2); }

.map__pin-pulse {
    transform-origin: center;
    animation: mapPulse 2.5s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.4); }
}

.addresses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.address-card {
    padding: 32px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.address-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,23,31,0.4);
    transform: translateY(-4px);
}

.address-card--featured {
    background: linear-gradient(180deg, rgba(201,23,31,0.08) 0%, rgba(201,23,31,0.02) 100%);
    border-color: rgba(201,23,31,0.3);
}

.address-card__pin {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,23,31,0.15);
    color: var(--bd-red);
    border-radius: 50%;
    margin-bottom: 20px;
}

.address-card__street {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.address-card__city {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
}

.address-card__price {
    font-size: var(--text-xs);
    color: var(--bd-red);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.address-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bd-red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ============================================
   POURQUOI NOUS
   ============================================ */
.pourquoi {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.pourquoi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.pourquoi-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pourquoi-item__num {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--bd-red);
    line-height: 1;
}

.pourquoi-item__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.pourquoi-item__text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   À PROPOS
   ============================================ */
.apropos {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.apropos__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apropos__content { padding-right: 24px; }

.apropos__content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: var(--text-base);
    line-height: 1.8;
}

.apropos__content strong { color: var(--text-primary); font-weight: 600; }

.apropos__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-900);
    border: 1px solid var(--border);
}

.apropos__visual-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-family: var(--font-display);
    font-style: italic;
}

/* ============================================
   BUREAU SLIDER — crossfade carousel in apropos
   ============================================ */
.bureau-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--black);
}

.bureau-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 6s ease-out;
    will-change: opacity, transform;
}

.bureau-slider__slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.bureau-slider__slide img,
.bureau-slider__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Subtle vignette + gradient at bottom for caption legibility */
.bureau-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 55%, rgba(10,10,14,0.55) 100%),
        radial-gradient(ellipse at center, transparent 60%, rgba(10,10,14,0.15) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Caption — bottom-left chip */
.bureau-slider__caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 4;
    pointer-events: none;
}

.bureau-slider__caption-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(10, 10, 14, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bureau-slider__caption-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bd-red);
    box-shadow: 0 0 8px var(--bd-red-glow);
    animation: bureauDot 2.2s ease-in-out infinite;
}

@keyframes bureauDot {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Dots navigation — bottom right */
.bureau-slider__dots {
    position: absolute;
    bottom: 22px;
    right: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bureau-slider__dot {
    width: 22px;
    height: 4px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s var(--ease),
                width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bureau-slider__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.bureau-slider__dot.is-active {
    background: rgba(255, 255, 255, 0.25);
    width: 38px;
}

/* Active dot fills with red on a timer (visual progress) */
.bureau-slider__dot.is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bd-red);
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    animation: bureauDotProgress var(--slide-duration, 5s) linear forwards;
}

@keyframes bureauDotProgress {
    to { transform: scaleX(1); }
}

/* Pause progress when slider hovered */
.bureau-slider.is-paused .bureau-slider__dot.is-active::after {
    animation-play-state: paused;
}

/* Reduced motion — disable animations */
@media (prefers-reduced-motion: reduce) {
    .bureau-slider__slide {
        transition-duration: 0.01ms;
        transform: none;
    }
    .bureau-slider__slide.is-active {
        transform: none;
    }
    .bureau-slider__caption-dot,
    .bureau-slider__dot.is-active::after {
        animation: none;
    }
}

.apropos__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.apropos__feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.apropos__feature-num {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--bd-red);
}

.apropos__feature-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.faq__list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--duration) var(--ease);
}

.faq-item__question:hover { color: var(--bd-red); }

.faq-item__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--duration) var(--ease);
}

.faq-item.active .faq-item__icon {
    background: var(--bd-red);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-item__answer { max-height: 400px; }

.faq-item__answer-inner {
    padding-top: 20px;
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* ============================================
   ARTICLES
   ============================================ */
.articles {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.articles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}

.article-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.article-card__image {
    background: linear-gradient(135deg, var(--bd-blue) 0%, var(--bd-red) 100%);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-style: italic;
}

.article-card__body { padding: 32px; }

.article-card__category {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--bd-red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.article-card__text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-card__date {
    font-size: var(--text-xs);
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

/* ============================================
   ARTICLE CARD — GALLERY VARIANT (2 photos in header)
   ============================================ */
.article-card--gallery {
    grid-template-columns: 1fr;
}

.article-card__gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 4px;
    background: var(--black);
    min-height: 380px;
}

.article-card__gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: var(--gray-900);
}

.article-card__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.article-card--gallery:hover .article-card__gallery-item img {
    transform: scale(1.04);
}

.article-card__gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10,10,14,0.65) 100%);
    pointer-events: none;
}

.article-card__gallery-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(10, 10, 14, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.article-card__gallery-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bd-red);
    box-shadow: 0 0 6px var(--bd-red-glow);
}

.article-card--gallery .article-card__body {
    padding: 36px 40px;
}

@media (max-width: 720px) {
    .article-card__gallery {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .article-card__gallery-item {
        aspect-ratio: 16/9;
    }
    .article-card--gallery .article-card__body {
        padding: 28px 24px;
    }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__info {
    padding-right: 24px;
}

.contact__desc {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail > svg {
    flex-shrink: 0;
    color: var(--bd-red);
    margin-top: 2px;
}

.contact__detail > div { display: flex; flex-direction: column; gap: 4px; }
.contact__detail strong {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.contact__detail span {
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: 1.5;
}

.contact__form-wrap {
    background: var(--gray-50);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__field { display: flex; flex-direction: column; gap: 8px; }

.contact-form__field label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-primary);
    transition: border-color var(--duration) var(--ease);
    font-size: var(--text-sm);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--bd-red);
    box-shadow: 0 0 0 3px var(--bd-red-glow);
}

.contact-form__field textarea { resize: vertical; min-height: 120px; }

.contact-form__note {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    text-align: center;
    margin-top: 8px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.newsletter__desc {
    color: rgba(255,255,255,0.65);
    font-size: var(--text-base);
    margin-bottom: 32px;
}

.newsletter__form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 8px;
}

.newsletter__form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: var(--text-sm);
}

.newsletter__form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter__form input:focus {
    outline: none;
    border-color: var(--bd-red);
    background: rgba(255,255,255,0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    background: var(--bg-dark-alt);
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand { padding-right: 24px; }

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer__tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.55);
    transition: all var(--duration) var(--ease);
}

.footer__social:hover {
    background: var(--bd-red);
    border-color: var(--bd-red);
    color: var(--white);
}

.footer__col h5 {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    transition: color var(--duration) var(--ease);
}

.footer__col a:hover { color: var(--bd-red); }
.footer__col li { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 16px;
}

.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--bd-red); }

/* ============================================
   FADE-UP ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up--d1 { transition-delay: 0.1s; }
.fade-up--d2 { transition-delay: 0.2s; }
.fade-up--d3 { transition-delay: 0.3s; }
.fade-up--d4 { transition-delay: 0.4s; }

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

/* Nav — liens serrés entre 769px et 1100px pour tenir sur une ligne */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav__links { gap: 16px; }
    .nav__links a { font-size: 0.8rem; }
    .nav__actions { gap: 6px; }
}

@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .services__grid,
    .packs__grid,
    .pourquoi__grid { grid-template-columns: repeat(2, 1fr); }

    /* Services additionnels — 4 colonnes → 2 */
    .services--additional .services__grid { grid-template-columns: repeat(2, 1fr) !important; }

    .addresses__grid { grid-template-columns: repeat(2, 1fr); }

    /* Map — hauteur réduite sur tablette */
    .addresses__map { max-height: 45vh; }

    .apropos__layout,
    .contact__layout { grid-template-columns: 1fr; gap: 48px; }

    /* Apropos — retirer le padding-right inutile en mono-colonne */
    .apropos__content { padding-right: 0; }

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

    /* Section header — marge inférieure réduite */
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; --container-padding: 20px; }

    .hide-mobile { display: none; }

    .nav__links { display: none; }
    .nav__burger { display: flex; }
    .nav__actions .btn { display: none; }

    .hero { min-height: 100vh; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }

    .trust { padding: 48px 0; }
    .trust__grid { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .trust__item { min-width: 140px; flex: 0 1 auto; }
    .trust__divider { display: none; }

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

    /* ── Sliders horizontaux scroll-snap (4 sections) ── */
    .services__grid,
    .packs__grid,
    .services--additional .services__grid,
    .addresses__grid {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        margin-left:  calc(-1 * var(--container-padding));
        margin-right: calc(-1 * var(--container-padding));
        padding-left:  var(--container-padding);
        padding-right: var(--container-padding);
        padding-bottom: 4px;
        scroll-padding-left: var(--container-padding);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .services__grid::-webkit-scrollbar,
    .packs__grid::-webkit-scrollbar,
    .services--additional .services__grid::-webkit-scrollbar,
    .addresses__grid::-webkit-scrollbar { display: none; }

    /* Largeur cartes — montre ~24px de la suivante (hint de swipe) */
    .packs__grid .pack-card,
    .addresses__grid .address-card,
    .services__grid .service-card {
        flex: 0 0 calc(100vw - 56px);
        scroll-snap-align: start;
        max-width: 360px;
    }
    .services--additional .services__grid .service-card {
        flex: 0 0 calc(100vw - 80px);
        scroll-snap-align: start;
        max-width: 300px;
    }

    /* ── Indicateur swipe rouge animé ── */
    .slider-hint {
        height: 2px;
        background: rgba(201, 23, 31, 0.1);
        border-radius: 1px;
        margin: 10px 0 0;
        overflow: hidden;
    }
    .slider-hint__bar {
        display: block;
        height: 100%;
        width: 38%;
        background: var(--bd-red);
        border-radius: 1px;
        animation: swipeHint 2.4s ease-in-out infinite;
    }

    /* Apropos — grille stats 2 cols conservée, mais layout mono-colonne */
    .apropos__layout { gap: 40px; }
    .apropos__visual { aspect-ratio: 16/9; }

    /* Inner pages hero */
    .inner-hero { padding: 120px 0 48px; }
    .inner-hero__title { font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -1px; }

    .article-card { grid-template-columns: 1fr; }
    .article-card__image { min-height: 180px; }

    .contact__form-wrap { padding: 32px 24px; }
    .contact-form__row { grid-template-columns: 1fr; }

    /* Comptabilité — contact section inline en tant que page index */
    .contact__info { padding-right: 0; }

    /* FAQ — catégories chips wrap déjà géré, mais réduire margin */
    .faq-nav { gap: 8px; margin-top: 24px; }
    .faq-nav__chip { padding: 8px 14px; font-size: var(--text-xs); }
    .faq-cta { padding: 40px 24px; margin-top: 48px; }
    .faq-cta h3 { font-size: var(--text-2xl); }
    .faq-category { margin-bottom: 56px; }

    /* Contact map — hauteur réduite */
    .contact__map iframe { height: 220px !important; }

    /* Addresses map — hauteur réduite */
    .addresses__map { max-height: 40vh; }

    .newsletter__form { flex-direction: column; }

    .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
    .hero__badge { font-size: 0.65rem; padding: 6px 14px; }
    .pack-card { padding: 36px 24px; }
    .service-card { padding: 36px 28px; }

    /* Inner pages hero */
    .inner-hero { padding: 100px 0 40px; }
    .inner-hero__title { letter-spacing: -0.5px; margin: 16px 0 12px; }
    .inner-hero__desc { font-size: var(--text-base); }

    /* Section header */
    .section-header { margin-bottom: 40px; }
    .section-header__title { letter-spacing: -0.5px; }

    /* Trust bar */
    .trust__item { min-width: 120px; }
    .trust__number { font-size: clamp(2rem, 8vw, 2.5rem); }

    /* Pourquoi */
    .pourquoi__grid { gap: 28px; }

    /* Addresses */
    .addresses__map { max-height: 35vh; }
    .address-card { padding: 24px 20px; }

    /* FAQ */
    .faq-nav__chip { padding: 7px 12px; }
    .faq-cta { padding: 32px 20px; }
    .faq-item__question { font-size: var(--text-base); }

    /* Contact */
    .contact__form-wrap { padding: 24px 18px; }

    /* Footer */
    .footer__legal { flex-direction: column; align-items: center; gap: 10px; }
    .footer { padding: 48px 0 24px; }
}

/* ============================================
   INNER PAGES — Hero banner
   ============================================ */
.page--inner { padding-top: 0; }

.nav--solid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
}
.nav--solid .nav__logo-text,
.nav--solid .nav__links a { color: var(--gray-700); }
.nav--solid .nav__logo-text { color: var(--black); }
.nav--solid .nav__links a:hover { color: var(--black); }
.nav--solid .nav__burger span { background: var(--black); }

.nav__link--active { color: var(--bd-red) !important; }
.nav__link--active::after { width: 100% !important; }

.inner-hero {
    padding: 160px 0 64px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-light);
}

.inner-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 20px 0 16px;
    color: var(--text-primary);
}

.inner-hero__desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.6;
}

/* ============================================
   ADDRESSES — interactive hint + highlight
   ============================================ */
.addresses__hint {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: var(--text-sm);
    margin: -32px 0 32px;
    font-style: italic;
}

/* ============================================
   MAP SWAP — IDF ↔ Paris 8e crossfade
   ============================================ */
.addresses__map {
    position: relative;
    /* keep aspect ratio of viewBox so views can overlap cleanly */
    aspect-ratio: 1000 / 540;
    max-height: 60vh;
}

.map-view {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 0.55s var(--ease), transform 0.6s var(--ease);
    will-change: transform, opacity;
}

.map-view--active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.map-view .addresses__svg-map {
    width: 100%;
    height: 100%;
}

/* View label top-right corner */
.map-label {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
    font-weight: 500;
    pointer-events: none;
    transition: background 0.4s var(--ease);
}

.map-label__dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74,222,128,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.addresses__map[data-current-view="paris"] .map-label__dot {
    background: var(--bd-red);
    box-shadow: 0 0 8px rgba(201,23,31,0.6);
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Back button — only visible in Paris view */
.map-back {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: all 0.4s var(--ease);
}

.addresses__map[data-current-view="paris"] .map-back {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.map-back:hover {
    background: var(--bd-red);
    border-color: var(--bd-red);
    transform: translateY(-2px);
}

/* Active state — when address card clicked, highlight matching pin on map */
.map__pin.is-active circle:first-child {
    fill: rgba(201,23,31,0.30) !important;
    animation: mapPulseFast 1.2s ease-in-out infinite !important;
}

.map__pin.is-active circle {
    transition: all 0.3s var(--ease);
}

/* Dim non-active pins on the active view */
.map-view--active .map__pin {
    transition: opacity 0.4s var(--ease);
}

.addresses__map.has-highlight .map-view--active .map__pin {
    opacity: 0.35;
}

.addresses__map.has-highlight .map-view--active .map__pin.is-active {
    opacity: 1;
}

@keyframes mapPulseFast {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

.address-card.is-active {
    background: rgba(201,23,31,0.10);
    border-color: var(--bd-red);
    box-shadow: 0 0 0 1px rgba(201,23,31,0.3), 0 8px 24px rgba(201,23,31,0.2);
}

.address-card { cursor: pointer; }

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.faq-nav__chip {
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--duration) var(--ease);
}

.faq-nav__chip:hover {
    background: var(--bd-red);
    color: var(--white);
    border-color: var(--bd-red);
    transform: translateY(-2px);
}

.faq-category {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.faq-category__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bd-red);
    display: inline-block;
}

.faq-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--bg-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.faq-cta h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-cta p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}

/* ============================================
   CONTACT MAP
   ============================================ */
.contact__map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--gray-100);
}

.contact__map iframe { display: block; }

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    font-family: var(--font-body);
}

.chatbot__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bd-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201,23,31,0.4), 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
}

.chatbot__toggle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(201,23,31,0.5);
}

.chatbot__icon-close { display: none; }
.chatbot.is-open .chatbot__icon-open { display: none; }
.chatbot.is-open .chatbot__icon-close { display: block; }
.chatbot.is-open .chatbot__toggle { background: var(--gray-800); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.chatbot__notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--white);
    color: var(--bd-red);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bd-red);
}
.chatbot.is-open .chatbot__notif,
.chatbot.is-seen .chatbot__notif { display: none; }

.chatbot__panel {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 140px);
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.chatbot.is-open .chatbot__panel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.chatbot__header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.chatbot__header-avatar {
    width: 38px;
    height: 38px;
    background: var(--bd-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 0 3px rgba(201,23,31,0.2);
    position: relative;
}

.chatbot__header-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
}

.chatbot__header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chatbot__header-info strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.chatbot__header-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
}

.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fafafa;
    scroll-behavior: smooth;
}

.chatbot__messages::-webkit-scrollbar { width: 6px; }
.chatbot__messages::-webkit-scrollbar-track { background: transparent; }
.chatbot__messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 3px; }

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    animation: chatFadeIn 0.4s var(--ease);
}

@keyframes chatFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg--bot {
    align-self: flex-start;
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-bottom-left-radius: 4px;
}

.chat-msg--user {
    align-self: flex-end;
    background: var(--bd-red);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-msg strong { font-weight: 700; }

.chat-msg--bot a {
    color: var(--bd-red);
    text-decoration: underline;
    font-weight: 600;
}

.chat-msg--typing {
    background: var(--white);
    border: 1px solid var(--border-light);
    align-self: flex-start;
    padding: 14px 20px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: inline-flex;
    gap: 4px;
}

.chat-msg--typing span {
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.chat-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot__suggestions {
    padding: 0 16px 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: #fafafa;
    border-top: 1px solid var(--border-light);
    max-height: 120px;
    overflow-y: auto;
}

.chat-suggestion {
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--gray-700);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.chat-suggestion:hover {
    background: var(--bd-red);
    color: var(--white);
    border-color: var(--bd-red);
}

.chatbot__form {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.chatbot__form input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    background: var(--gray-50);
    transition: all 0.2s var(--ease);
}

.chatbot__form input:focus {
    outline: none;
    border-color: var(--bd-red);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--bd-red-glow);
}

.chatbot__form button {
    width: 40px;
    height: 40px;
    background: var(--bd-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
    flex-shrink: 0;
}

.chatbot__form button:hover {
    background: var(--bd-red-dark);
    transform: scale(1.05);
}

/* Lead capture form inside chat */
.chat-lead-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: chatFadeIn 0.4s var(--ease);
}

.chat-lead-form input,
.chat-lead-form textarea {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
}

.chat-lead-form input:focus,
.chat-lead-form textarea:focus {
    outline: none;
    border-color: var(--bd-red);
}

.chat-lead-form textarea { resize: vertical; min-height: 60px; }

.chat-lead-form button {
    padding: 10px 16px;
    background: var(--bd-red);
    color: var(--white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s var(--ease);
}

.chat-lead-form button:hover { background: var(--bd-red-dark); }

@media (max-width: 480px) {
    .chatbot { bottom: 16px; right: 16px; }
    .chatbot__toggle { width: 54px; height: 54px; }
    .chatbot__panel {
        width: calc(100vw - 24px);
        right: -10px;
        height: 70vh;
        bottom: 72px;
    }
}

/* ── Indicateur swipe : caché sur desktop ── */
@media (min-width: 769px) {
    .slider-hint { display: none; }
}

/* ── Map mobile : éviter le chevauchement back-button / label ── */
@media (max-width: 768px) {
    .map-label {
        top: auto;
        bottom: 10px;
        right: 10px;
        font-size: 9px;
        padding: 5px 9px;
        gap: 5px;
        letter-spacing: 0.5px;
    }
    .map-label__dot { width: 5px; height: 5px; }
    .map-back {
        top: 10px;
        left: 10px;
        padding: 7px 11px;
        font-size: 11px;
    }
}

/* Barre rouge qui balaie gauche → droite (38% wide → translateX(265%) = 100% du container) */
@keyframes swipeHint {
    0%   { transform: translateX(-110%); opacity: 0; }
    12%  { opacity: 1; }
    78%  { opacity: 1; }
    90%  { transform: translateX(265%); opacity: 0; }
    100% { transform: translateX(265%); opacity: 0; }
}

/* ============================================
   ACCESSIBILITY — reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .map__pin-pulse { animation: none; }
    .hero__scroll-line { animation: none; }
}

/* ============================================
   === Client feedback batch 2026-05-31 ===
   A2 brand ® · P2 packs engagement note ·
   P5/P6 address card alignment + price ·
   badge tag · F6 FAQ CTA ghost button white
   ============================================ */

/* A2 — Registered-trademark ® after "BUSINESS DOM"
   (nav logo text, hero title, footer brand) */
.brand-r {
    font-size: 0.45em;
    vertical-align: super;
    line-height: 0;
    font-weight: 600;
    margin-left: 0.05em;
}

/* P2 — "Engagement minimum 6 mois…" as a distinct
   secondary line inside the packs section-header desc */
.packs-engagement-note {
    display: block;
    margin-top: 0.4em;
    font-size: 0.92em;
    opacity: 0.85;
}

/* P5 — Align address-card text consistently across all 4 cards.
   Flex column lets the price line pin to the bottom so the
   street/city blocks of every card line up (Mitry card no
   longer sits higher than the Paris cards that carry a price). */
.address-card {
    display: flex;
    flex-direction: column;
}

/* P6 — New price line "À partir de 30 € HT/mois" on the Paris cards.
   Strong, red accent, consistent with the design system. The
   margin-top:auto pins it to the card bottom (P5 alignment);
   padding-top provides the visual gap that margin would have given. */
.address-card__price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--bd-red);
    letter-spacing: 0.3px;
    margin-top: auto;
    padding-top: 0.9rem;
}

/* Repurposed prestige tag — subtle uppercase badge (the old
   prestige span moved from .address-card__price to this class).
   Kept as a soft tag rather than the loud red pill. */
.address-card__badge {
    display: inline-block;
    margin-top: 12px;
    padding: 0;
    background: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
}

/* F6 — FAQ "Votre question n'est pas listée ?" dark CTA box:
   make the ghost button (phone number) white & legible. */
.faq-cta .btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    background: transparent;
}

.faq-cta .btn--ghost:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
}
