/* ==========================================================================
   Majesté Paris — feuille de style
   Complète Bootstrap 5 : on ne redéfinit que ce qui porte l'identité.
   ========================================================================== */

:root {
    --mp-ink:        #12102a;
    --mp-ink-soft:   #2a2752;
    --mp-violet:     #4b3ac9;
    --mp-violet-dk:  #382ba4;
    --mp-gold:       #c9a227;
    --mp-gold-soft:  #e6cd76;
    --mp-paper:      #ffffff;
    --mp-muted:      #f5f4fb;
    --mp-line:       #e3e1f0;
    --mp-text:       #34324a;
    --mp-text-soft:  #6b6885;

    --mp-radius:     16px;
    --mp-radius-sm:  10px;
    --mp-shadow:     0 18px 40px -24px rgba(18, 16, 42, .35);
    --mp-shadow-lg:  0 30px 70px -30px rgba(18, 16, 42, .45);

    --mp-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

body {
    color: var(--mp-text);
    background: var(--mp-paper);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--mp-ink);
    font-weight: 600;
    letter-spacing: -.015em;
}

a { color: var(--mp-violet); }
a:hover { color: var(--mp-violet-dk); }

.skip-link {
    position: absolute;
    top: .5rem; left: .5rem;
    z-index: 2000;
    background: var(--mp-ink);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: var(--mp-radius-sm);
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */

.btn {
    --bs-btn-font-weight: 600;
    border-radius: 999px;
    padding-inline: 1.5rem;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-brand {
    background: var(--mp-violet);
    border: 1px solid var(--mp-violet);
    color: #fff;
    box-shadow: 0 12px 26px -16px rgba(75, 58, 201, .9);
}
.btn-brand:hover,
.btn-brand:focus-visible {
    background: var(--mp-violet-dk);
    border-color: var(--mp-violet-dk);
    color: #fff;
}

.btn-outline-brand {
    background: transparent;
    border: 1px solid var(--mp-line);
    color: var(--mp-ink);
}
.btn-outline-brand:hover,
.btn-outline-brand:focus-visible {
    background: var(--mp-ink);
    border-color: var(--mp-ink);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Bandeau promotionnel
   -------------------------------------------------------------------------- */

.promo-bar {
    background: linear-gradient(90deg, var(--mp-ink), var(--mp-violet-dk));
    color: #fff;
    font-size: .875rem;
    padding: .55rem 0;
}
.promo-code {
    display: inline-block;
    margin-left: .35rem;
    padding: .05rem .55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: var(--mp-gold-soft);
    letter-spacing: .06em;
}

/* --------------------------------------------------------------------------
   En-tête et navigation
   -------------------------------------------------------------------------- */

.site-header {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mp-line);
    z-index: 1030;
}

/* Barre fixe : compacte sur mobile, plus aérée à partir de « lg ». */
.site-header .navbar {
    --bs-navbar-padding-y: .35rem;
    --bs-navbar-brand-padding-y: 0;
    --bs-navbar-brand-margin-end: .75rem;
}
.site-header .navbar-brand { line-height: 1; }
.site-header .navbar-nav { --bs-nav-link-padding-y: .35rem; }

@media (min-width: 992px) {
    .site-header .navbar { --bs-navbar-padding-y: 0.85rem; }
    .site-header .navbar-nav { --bs-nav-link-padding-y: .5rem; }
}

/*
 * Sur mobile (< 768 px), l'en-tête passe en position fixe : il reste collé
 * en haut quel que soit le défilement. La hauteur réelle est mesurée en JS
 * et exposée via --mp-header-h ; la valeur de repli sert avant ce calcul.
 * Ce seuil correspond exactement à celui qui masque le bandeau promotionnel :
 * l'en-tête fixe ne peut donc jamais le recouvrir.
 */
@media (max-width: 767.98px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    /* On compense la hauteur libérée par l'en-tête sorti du flux. */
    body { padding-top: var(--mp-header-h, 52px); }

    /* Menu déroulé : jamais plus haut que l'écran, sinon il devient inutilisable. */
    .site-header .navbar-collapse {
        max-height: calc(100vh - var(--mp-header-h, 52px) - 1rem);
        max-height: calc(100dvh - var(--mp-header-h, 52px) - 1rem);
        overflow-y: auto;
    }
}

/* Les ancres internes ne doivent pas se glisser sous l'en-tête. */
section[id],
article[id],
div[id] { scroll-margin-top: calc(var(--mp-header-h, 52px) + 1rem); }

/* Logo image — version foncée sur fond clair, version blanche sur fond sombre. */
.site-logo {
    display: block;
    height: 50px;
    width: auto;
    max-width: 100%;
}
.site-logo-footer { height: 64px; }

@media (max-width: 575.98px) {
    .site-logo { height: 44px; }
    .site-logo-footer { height: 52px; }
}

/* Logo typographique de secours (si $LOGO['use_image'] est à false). */
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--mp-ink), var(--mp-violet));
    color: var(--mp-gold-soft);
    font-family: var(--mp-serif);
    font-size: 1.25rem;
    line-height: 1;
}
.brand-text { line-height: 1.1; }
.brand-name {
    display: block;
    font-family: var(--mp-serif);
    font-size: 1.15rem;
    color: var(--mp-ink);
}
.brand-city {
    display: block;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mp-text-soft);
}

.navbar-nav .nav-link {
    color: var(--mp-text);
    font-weight: 500;
    padding-inline: .9rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--mp-violet); }

.dropdown-menu {
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-sm);
    box-shadow: var(--mp-shadow);
    padding: .5rem;
}
.dropdown-item { border-radius: 8px; padding: .5rem .75rem; }
.dropdown-item:active { background: var(--mp-violet); }

.nav-phone {
    color: var(--mp-ink);
    font-weight: 600;
    white-space: nowrap;
    padding-inline: .5rem;
}
.nav-phone:hover { color: var(--mp-violet); }

/* --------------------------------------------------------------------------
   Éléments de section
   -------------------------------------------------------------------------- */

.section { padding: 5.5rem 0; }
.section-muted { background: var(--mp-muted); }

.section-dark {
    background:
        linear-gradient(160deg, rgba(18, 16, 42, .94) 0%, rgba(42, 39, 82, .90) 100%),
        url("../img/backgrounds/bg-geometrique.jpg") center / cover no-repeat,
        var(--mp-ink);
    color: rgba(255, 255, 255, .82);
}
.section-dark h2,
.section-dark h3,
.section-dark strong { color: #fff; }
.section-dark .section-lead { color: rgba(255, 255, 255, .74); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 600;
    color: var(--mp-violet);
    margin-bottom: .75rem;
}
.section-dark .eyebrow { color: var(--mp-gold-soft); }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; }

.section-title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin-bottom: 1rem;
}
.section-lead {
    font-size: 1.08rem;
    color: var(--mp-text-soft);
    max-width: 680px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

/* Fonds abstraits : l'image reste sous des voiles opaques pour préserver
   le contraste du texte (photos Pexels, voir assets/img/backgrounds/CREDITS.md). */
.hero {
    background:
        radial-gradient(900px 420px at 12% 0%, rgba(75, 58, 201, .40), transparent 60%),
        radial-gradient(700px 380px at 88% 20%, rgba(201, 162, 39, .16), transparent 60%),
        linear-gradient(165deg, rgba(18, 16, 42, .93) 0%, rgba(27, 23, 64, .88) 100%),
        url("../img/backgrounds/bg-lignes.jpg") center / cover no-repeat,
        var(--mp-ink);
    color: rgba(255, 255, 255, .85);
    padding: 7.5rem 0 8rem;
}
.hero .eyebrow { color: var(--mp-gold-soft); }

.hero-title {
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
}
.hero-lead {
    font-size: 1.13rem;
    color: rgba(255, 255, 255, .76);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-points { font-size: .95rem; color: rgba(255, 255, 255, .74); }
.hero-points li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .5rem;
}
.hero-points i { color: var(--mp-gold-soft); width: 1.1rem; text-align: center; }

.stars {
    display: inline-flex;
    gap: .18rem;
    color: var(--mp-gold);
    font-size: .95rem;
}

.page-hero {
    background:
        linear-gradient(165deg, rgba(18, 16, 42, .93) 0%, rgba(27, 23, 64, .89) 100%),
        url("../img/backgrounds/bg-lignes.jpg") center / cover no-repeat,
        var(--mp-ink);
    color: rgba(255, 255, 255, .8);
    padding: 6rem 0;
    text-align: center;
}
.page-hero .hero-lead { margin-inline: auto; }
.page-hero-sm { padding: 4.5rem 0; }

/* Aperçu de conversation ---------------------------------------------------- */

.chat-preview {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow-lg);
    overflow: hidden;
	max-width: 550px;
	margin-right: auto;
	margin-left: auto;
}
.chat-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    font-size: .9rem;
}
.chat-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, .18);
}
.chat-title { color: #fff; font-weight: 600; }
.chat-status { margin-left: auto; color: rgba(255, 255, 255, .55); font-size: .8rem; }

.chat-body { padding: 1.25rem; display: grid; gap: .75rem; }
.msg {
    margin: 0;
    padding: .75rem 1rem;
    border-radius: 14px;
    font-size: .875rem;
    max-width: 92%;
	line-height: 1.35;
}
.msg-out {
    justify-self: end;
    background: var(--mp-violet);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.msg-in {
    justify-self: start;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .88);
    border-bottom-left-radius: 4px;
}

/* --------------------------------------------------------------------------
   Chiffres clés
   -------------------------------------------------------------------------- */

.section-stats {
    padding: 3rem 0;
    background: var(--mp-muted);
    border-bottom: 1px solid var(--mp-line);
}
/* Libellés courts (et non plus des chiffres) : taille réduite en conséquence. */
.stat-value {
    font-family: var(--mp-serif);
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    line-height: 1.25;
    color: var(--mp-ink);
    margin-bottom: .3rem;
}
.stat-label {
    font-size: .9rem;
    color: var(--mp-text-soft);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Cartes d'agents
   -------------------------------------------------------------------------- */

.agent-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 1.75rem 1.5rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.agent-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--mp-shadow);
}
.agent-icon {
    display: inline-grid;
    place-items: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--mp-muted);
    color: var(--mp-violet);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.agent-name { font-size: 1.2rem; margin-bottom: .1rem; }
.agent-role {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--mp-text-soft);
    margin-bottom: .9rem;
}
.agent-pitch { font-size: .95rem; flex-grow: 1; }
.agent-link {
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}
.agent-link:hover { text-decoration: underline; }
.agent-link i {
    font-size: .78rem;
    margin-left: .2rem;
    transition: transform .18s ease;
}
.agent-card:hover .agent-link i { transform: translateX(3px); }

/* Fiches détaillées --------------------------------------------------------- */

.agent-detail { padding: 3rem 0; }
.agent-detail + .agent-detail { border-top: 1px solid var(--mp-line); }

.agent-portrait {
    background: linear-gradient(160deg, var(--mp-muted), #ecebf7);
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 3rem 1.5rem;
    text-align: center;
}
.agent-portrait-icon {
    display: inline-grid;
    place-items: center;
    width: 96px; height: 96px;
    border-radius: 26px;
    background: linear-gradient(140deg, var(--mp-ink), var(--mp-violet));
    color: var(--mp-gold-soft);
    font-size: 2.6rem;
    margin-bottom: 1.25rem;
}
.agent-portrait-name {
    font-family: var(--mp-serif);
    font-size: 1.6rem;
    color: var(--mp-ink);
    margin-bottom: .1rem;
}
.agent-portrait-role {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--mp-text-soft);
    margin: 0;
}

.agent-detail-title { font-size: 1.8rem; margin-bottom: .5rem; }
.agent-detail-role {
    font-size: 1rem;
    font-weight: 400;
    color: var(--mp-text-soft);
}
.agent-detail-quote {
    font-family: var(--mp-serif);
    font-size: 1.2rem;
    color: var(--mp-violet-dk);
    margin-bottom: .75rem;
}
.agent-detail-summary { color: var(--mp-text-soft); }

/* --------------------------------------------------------------------------
   Listes à puces cochées
   -------------------------------------------------------------------------- */

.check-list { margin: 1.25rem 0; }
.check-list li {
    position: relative;
    padding-left: 1.85rem;
    margin-bottom: .6rem;
}
.check-list li::before {
    /* fa-check — Font Awesome 7 Free, graisse 900 (solid). */
    content: "\f00c";
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0; top: 0;
    display: grid;
    place-items: center;
    width: 1.25rem; height: 1.25rem;
    margin-top: .18rem;
    border-radius: 50%;
    background: rgba(75, 58, 201, .12);
    color: var(--mp-violet);
    font-size: .66rem;
}

.feature-list li {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.feature-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .14); }

/* --------------------------------------------------------------------------
   Camille Studio
   -------------------------------------------------------------------------- */

.studio-panel {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--mp-radius);
    padding: 1.75rem;
}
.studio-panel-title {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--mp-gold-soft);
    margin-bottom: 1.25rem;
}
.studio-log li {
    display: flex;
    gap: 1rem;
    padding: .7rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .95rem;
}
.studio-time {
    flex: 0 0 3.5rem;
    color: var(--mp-gold-soft);
    font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Étapes
   -------------------------------------------------------------------------- */

.step-card {
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 2rem 1.75rem;
}
.step-num {
    display: block;
    font-family: var(--mp-serif);
    font-size: 2.2rem;
    color: var(--mp-gold);
    line-height: 1;
    margin-bottom: .75rem;
}
.step-title { font-size: 1.2rem; margin-bottom: .5rem; }

/* --------------------------------------------------------------------------
   Intégrations
   -------------------------------------------------------------------------- */

.integration-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin: 0;
}
.integration-chip {
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: 999px;
    padding: .55rem 1.15rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--mp-ink);
}
.integration-more {
    background: var(--mp-ink);
    border-color: var(--mp-ink);
    color: var(--mp-gold-soft);
}

/* --------------------------------------------------------------------------
   Témoignages
   -------------------------------------------------------------------------- */

.quote-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 1.75rem;
    margin: 0;
}
.quote-card blockquote { flex-grow: 1; margin: .75rem 0 1.25rem; }
.quote-card blockquote p { margin: 0; font-size: .97rem; }
.quote-card figcaption {
    font-size: .88rem;
    color: var(--mp-text-soft);
    border-top: 1px solid var(--mp-line);
    padding-top: 1rem;
}
.quote-card figcaption strong { color: var(--mp-ink); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-accordion .accordion-item {
    background: transparent;
    border-bottom: 1px solid var(--mp-line);
}
.faq-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    color: var(--mp-ink);
    font-size: 1.05rem;
    padding-inline: 0;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--mp-violet); }
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: 2px solid rgba(75, 58, 201, .35);
    outline-offset: 3px;
}
.faq-accordion .accordion-body {
    padding-inline: 0;
    color: var(--mp-text-soft);
}

/* --------------------------------------------------------------------------
   Offres
   -------------------------------------------------------------------------- */

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 2rem 1.75rem;
}
.plan-featured {
    border-color: var(--mp-violet);
    box-shadow: var(--mp-shadow);
}
.plan-badge {
    position: absolute;
    top: -.8rem; left: 50%;
    transform: translateX(-50%);
    background: var(--mp-violet);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 999px;
    white-space: nowrap;
}
.plan-name { font-size: 1.45rem; margin-bottom: .2rem; }
.plan-for { font-size: .88rem; color: var(--mp-text-soft); margin-bottom: 1.25rem; }
.plan-price {
    font-family: var(--mp-serif);
    font-size: 2.6rem;
    color: var(--mp-ink);
    line-height: 1;
    margin-bottom: .35rem;
}
.plan-currency { font-size: 1.6rem; }
.plan-period {
    font-family: inherit;
    font-size: .95rem;
    font-weight: 400;
    color: var(--mp-text-soft);
}
.plan-note { font-size: .82rem; color: var(--mp-text-soft); margin-bottom: 1.25rem; }
.plan-features { flex-grow: 1; font-size: .94rem; }
.plan-vat { font-size: .88rem; color: var(--mp-text-soft); }

.include-card {
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 1.5rem;
}
.include-title { font-size: 1.05rem; margin-bottom: .4rem; }

/* --------------------------------------------------------------------------
   Bandeau d'appel à l'action
   -------------------------------------------------------------------------- */

.cta-band {
    background:
        linear-gradient(160deg, rgba(18, 16, 42, .93) 0%, rgba(56, 43, 164, .90) 100%),
        url("../img/backgrounds/bg-cta-reseau.jpg") center / cover no-repeat,
        var(--mp-ink);
    color: rgba(255, 255, 255, .82);
}
.cta-band h2 { color: #fff; }
.cta-band .section-lead {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Formulaire et contact
   -------------------------------------------------------------------------- */

.form-panel {
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 2rem;
    box-shadow: var(--mp-shadow);
}

.form-label { font-weight: 600; font-size: .92rem; color: var(--mp-ink); }
.req { color: #c0392b; }

.form-control, .form-select {
    border-color: var(--mp-line);
    border-radius: var(--mp-radius-sm);
    padding: .7rem .9rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--mp-violet);
    box-shadow: 0 0 0 .2rem rgba(75, 58, 201, .15);
}
.form-check-input:checked {
    background-color: var(--mp-violet);
    border-color: var(--mp-violet);
}
.form-legal { font-size: .82rem; color: var(--mp-text-soft); }

/* Piège à robots : hors écran, jamais affiché. */
.hp-field {
    position: absolute !important;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

.contact-card {
    background: var(--mp-muted);
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    padding: 1.75rem;
}
.contact-line { margin-bottom: .75rem; }
.contact-label {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--mp-text-soft);
}

.map-frame {
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    overflow: hidden;
    line-height: 0;
}
.map-frame iframe {
    width: 100%;
    height: 320px;
    border: 0;
}
.map-caption {
    font-size: .85rem;
    margin-top: .5rem;
    text-align: right;
}

/* --------------------------------------------------------------------------
   Pages légales
   -------------------------------------------------------------------------- */

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: .75rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content ul { margin-bottom: 1.25rem; }
.legal-content li { margin-bottom: .4rem; }

.legal-table { margin: 1rem 0 1.5rem; }
.legal-table th {
    width: 34%;
    font-weight: 600;
    color: var(--mp-ink);
}
.legal-table td, .legal-table th { padding: .6rem .5rem; }

/* --------------------------------------------------------------------------
   Bandeau cookies
   -------------------------------------------------------------------------- */

.cookie-bar {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    z-index: 1080;
    max-width: 640px;
    margin-inline: auto;
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow-lg);
    padding: 1.25rem 1.5rem;
}
.cookie-bar p { font-size: .9rem; margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--mp-ink);
    color: rgba(255, 255, 255, .68);
    padding: 4rem 0 1.5rem;
    font-size: .93rem;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-city { color: rgba(255, 255, 255, .5); }

.footer-tagline {
    color: rgba(255, 255, 255, .6);
    max-width: 22rem;
    margin-bottom: 1.25rem;
}
.footer-heading {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--mp-gold-soft);
    margin-bottom: 1rem;
}
.footer-links li { margin-bottom: .55rem; }
.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}
.footer-links a:hover,
.footer-contact a:hover { color: #fff; text-decoration: underline; }

.footer-contact li { margin-bottom: .4rem; }

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   Ajustements responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 4.5rem 0 5rem; }
    .page-hero { padding: 4rem 0; }
    .navbar-collapse { padding-block: 1rem; }
    .nav-phone { padding-inline: 0; }
    .agent-detail { padding: 2rem 0; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
