/**
 * Babi Meet — Vitrine style Tribu
 * Structure, typo Nunito, layout Tribu — couleurs Babi Meet conservées
 */

:root {
    /* Babi Meet brand (conservé) */
    --primary: #DC143C;
    --primary-hover: #B91032;
    --primary-soft: #FDE8EC;
    --secondary: #E8355A;
    --orange: var(--primary);
    --orange-hover: var(--primary-hover);
    --orange-soft: var(--primary-soft);

    /* Neutres mappés style Tribu */
    --black: #1A0F12;
    --white: #FFFFFF;
    --cream: #FDF8F9;
    --sand: #FDE8EC;
    --earth: #2A1418;
    --footer-bg: #1A0F12;
    --grey-50: #FDF8F9;
    --grey-100: #FDE8EC;
    --grey-200: #F0E0E4;
    --grey-400: #8a8578;
    --grey-500: #6B5A5E;
    --grey-700: #1A0F12;
    --text: var(--black);
    --text-muted: var(--grey-500);
    --border: var(--grey-200);

    --radius: 18px;
    --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, strong, b { font-weight: 800; }

a { color: inherit; text-decoration: none; }

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

/* ── Reveal animations ── */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* Images en couleur (pas de N&B) */

/* ── Typo vitrine ── */
.kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 14px;
}

h1, h2, h3 { text-wrap: balance; }

/* ── Header ── */
header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    min-width: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--primary-soft);
}

.brand-wordmark-site .brand-meet { color: var(--primary); }

.brand--footer .brand-name {
    font-weight: 800;
    font-size: 20px;
    color: var(--black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a:not(.btn) {
    color: var(--grey-700);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.nav-links a:not(.btn):hover { color: var(--primary); }

.nav-lang-btn {
    appearance: none;
    border: 1.5px solid var(--border, #e8dfe2);
    background: var(--white, #fff);
    color: var(--grey-800, #1a0f12);
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    cursor: pointer;
    line-height: 1;
}
.nav-lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.nav-lang-btn--mobile {
    display: block;
    width: 100%;
    text-align: start;
    margin-bottom: 4px;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
}

.nav-links .nav-cta { margin-left: 4px; flex-shrink: 0; white-space: nowrap; }

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--white);
    color: var(--grey-700);
    cursor: pointer;
    font-size: 18px;
}

.nav-mobile-panel {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    background: var(--white);
}

.nav-mobile-panel.is-open {
    display: flex;
}

.nav-mobile-panel a:not(.btn) {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--grey-700);
    border-bottom: 1px solid var(--grey-200);
}

.nav-mobile-panel .btn { margin-top: 8px; text-align: center; justify-content: center; }

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-toggle { display: grid; place-items: center; }
}

@media (min-width: 721px) {
    .nav-mobile-panel,
    .nav-mobile-panel.is-open {
        display: none !important;
    }
}

/* ── Boutons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease, filter .15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover { filter: brightness(0.95); }

.btn-secondary,
.btn-soft {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: var(--primary-soft);
}

.btn-ghost,
.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--grey-200);
}

.btn-lg { padding: 15px 28px; font-size: 16px; }

.btn-sm { padding: 9px 16px; font-size: 14px; }

.nav-links a.btn-primary { color: var(--white); }

/* ── Hero ── */
.hero {
    padding: clamp(72px, 11vw, 120px) 0 clamp(56px, 8vw, 96px);
    text-align: center;
    background: var(--white);
}

.hero h1 {
    font-size: clamp(38px, 6.2vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 800;
    max-width: 16ch;
    margin: 0 auto;
    color: var(--black);
}

.hero h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero .lead {
    max-width: 36rem;
    margin: 28px auto 40px;
    font-size: clamp(16px, 2vw, 19px);
    color: var(--grey-500);
    line-height: 1.7;
    text-wrap: pretty;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--grey-100);
    font-size: 13px;
    font-weight: 700;
    color: var(--grey-700);
}

.trust-pill .lucide-icon { color: var(--primary); }

/* ── Services (bandeau horizontal) ── */
.services {
    padding: clamp(48px, 8vw, 72px) 0 clamp(72px, 10vw, 96px);
    background: var(--primary);
}

.services-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 48px;
    padding: 0 24px;
    color: var(--white);
}

.services-head .kicker { color: rgba(255, 255, 255, 0.7); }

.services-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--white);
}

.services-head p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 2vw, 18px);
    margin-top: 16px;
    line-height: 1.65;
    font-weight: 700;
}

.services-marquee {
    overflow: hidden;
    width: 100%;
    padding: 8px 0 24px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.services-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 0 24px;
    animation: services-marquee 36s linear infinite;
    will-change: transform;
}

.services-marquee:hover .services-track,
.services-marquee:focus-within .services-track {
    animation-play-state: paused;
}

@keyframes services-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .services-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .services-track {
        animation: none;
        width: auto;
        scroll-snap-type: x mandatory;
    }
    .services-marquee::-webkit-scrollbar { display: none; }
}

.service-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: var(--black);
}

.service-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .72;
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 15, 18, .92) 0%, rgba(26, 15, 18, .3) 55%, rgba(26, 15, 18, .15) 100%);
}

.service-card__body {
    position: relative;
    z-index: 1;
    padding: 28px 24px 26px;
}

.service-card h3 {
    font-size: clamp(22px, 3vw, 26px);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-card p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 20px;
    max-width: 28ch;
    font-weight: 700;
}

.service-card .btn-card {
    display: inline-flex;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.service-card--light {
    color: var(--black);
    background: var(--cream);
}

.service-card--light .service-card__overlay {
    background: linear-gradient(to top, rgba(253, 248, 249, .98) 0%, rgba(253, 248, 249, .55) 50%, transparent 100%);
}

.service-card--light p { color: var(--grey-700); }

.service-card--light .btn-card {
    background: var(--primary);
    color: var(--white);
}

/* ── Sections splits ── */
.section { padding: clamp(72px, 10vw, 104px) 0; }

.section--sand { background: var(--sand); }

.section--white { background: var(--white); }

.section-head {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto clamp(48px, 7vw, 72px);
    padding: 0 8px;
}

.section-head h2 {
    font-size: clamp(28px, 4.5vw, 42px);
    letter-spacing: -0.03em;
    line-height: 1.12;
    font-weight: 800;
}

.section-head p {
    color: var(--grey-500);
    font-size: clamp(16px, 2vw, 18px);
    margin-top: 18px;
    line-height: 1.7;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.split + .split { margin-top: clamp(56px, 8vw, 96px); }

.split.flip .split-media { order: 2; }

@media (max-width: 860px) {
    .split { grid-template-columns: 1fr; gap: 28px; }
    .split.flip .split-media { order: 0; }
}

.split-media img {
    width: 100%;
    max-height: 480px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 32px 64px -32px rgba(26, 15, 18, .22);
}

.split-text { max-width: 34rem; width: 100%; padding: 4px 0; }

.split-text h3 {
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -0.03em;
    line-height: 1.12;
    font-weight: 800;
    max-width: 18ch;
}

.split-text p {
    color: var(--grey-500);
    font-size: clamp(16px, 2vw, 18px);
    margin: 18px 0 28px;
    line-height: 1.7;
    font-weight: 700;
}

.steps-list {
    list-style: none;
    display: grid;
    gap: 0;
    max-width: 36rem;
}

.steps-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.steps-list li:first-child { border-top: none; padding-top: 0; }

.steps-list .num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 15px;
}

.steps-list b {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
}

.steps-list span {
    color: var(--grey-500);
    font-size: 15px;
    line-height: 1.55;
    display: block;
    font-weight: 700;
}

/* ── Mosaic + mission ── */
.mosaic-wrap {
    padding: clamp(72px, 10vw, 96px) 0;
    background: var(--primary-soft);
    color: var(--black);
}

.mosaic-marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 8px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.mosaic-marquee__track {
    display: flex;
    gap: 10px;
    width: max-content;
    padding: 0 10px;
    animation: mosaic-marquee 42s linear infinite;
    will-change: transform;
}

.mosaic-marquee:hover .mosaic-marquee__track {
    animation-play-state: paused;
}

@keyframes mosaic-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mosaic-marquee__item {
    flex: 0 0 clamp(200px, 22vw, 280px);
    height: clamp(260px, 32vw, 360px);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.mosaic-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .mosaic-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .mosaic-marquee__track {
        animation: none;
    }
    .mosaic-marquee::-webkit-scrollbar { display: none; }
    .mosaic-marquee__item { scroll-snap-align: center; }
}

.mission {
    color: var(--black);
    padding: clamp(56px, 8vw, 80px) 24px clamp(72px, 10vw, 96px);
    text-align: center;
}

.mission .kicker { color: var(--grey-500); }

.mission h2 {
    font-size: clamp(28px, 4.5vw, 46px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 22ch;
    margin: 0 auto 22px;
    color: var(--black);
}

.mission p {
    max-width: 40rem;
    margin: 0 auto 36px;
    color: var(--grey-500);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.75;
    font-weight: 700;
}

.btn-mission {
    display: inline-flex;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}

.btn-mission:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ── Témoignages ── */
.testimonials {
    padding: clamp(72px, 10vw, 96px) 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 18px;
}

.testimonial-card {
    border: 1px solid var(--grey-200);
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .04);
}

.testimonial-card__photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.testimonial-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__body { padding: 22px; }

.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-700);
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonial-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    font-size: 14px;
}

.testimonial-card__meta strong {
    display: block;
    font-weight: 800;
}

.testimonial-card__meta span { color: var(--grey-500); font-weight: 700; }

.testimonial-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 6px 10px;
    border-radius: 999px;
}

/* ── FAQ ── */
.faq-section { padding: clamp(56px, 8vw, 88px) 0; background: var(--white); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
    border: none;
    border-radius: 14px;
    background: var(--primary-soft);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    text-align: left;
    cursor: pointer;
}

.faq-question .lucide-icon,
.faq-question .faq-icon { color: var(--primary); transition: transform .2s; flex-shrink: 0; }

.faq-item.open .faq-question .lucide-icon,
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 20px 16px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
    font-size: 14px;
    font-weight: 700;
    color: var(--grey-500);
    line-height: 1.6;
}

.faq-answer a { color: var(--primary); text-decoration: underline; }

/* ── Premium box ── */
.premium-section { padding: clamp(56px, 8vw, 88px) 0; }

.premium-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
    align-items: center;
    padding: clamp(32px, 5vw, 48px);
    border-radius: 28px;
    background: var(--primary-soft);
    border: 1px solid var(--grey-200);
}

.premium-band h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.03em; }

.premium-perks {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.premium-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
}

.premium-perks .lucide-icon { color: var(--primary); flex-shrink: 0; }

.store-badge-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ── Icônes Lucide (style Tribu) ── */
.lucide-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke-width: 1.75;
}

.premium-box {
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid var(--grey-200);
    text-align: center;
}

.premium-box .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}

.premium-box .note {
    font-size: 13px;
    color: var(--grey-500);
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 860px) {
    .premium-band { grid-template-columns: 1fr; }
}

/* ── CTA download ── */
.section--cta { padding: clamp(56px, 8vw, 88px) 0 clamp(72px, 10vw, 96px); background: var(--white); }

.cta-band {
    background: var(--white);
    color: var(--black);
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: clamp(32px, 5vw, 48px) clamp(24px, 5vw, 48px);
    overflow: hidden;
}

.cta-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.cta-band__slides { display: flex; justify-content: center; min-width: 0; }

.phone-slider { width: min(100%, 280px); }

.phone-slider__viewport {
    position: relative;
    padding: 10px;
    border-radius: 36px;
    background: linear-gradient(145deg, #2a1418 0%, #111 100%);
    box-shadow: none;
}

.phone-slider__notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    border-radius: 0 0 14px 14px;
    background: #0a0a0a;
    z-index: 2;
    pointer-events: none;
}

.phone-slider__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 28px;
    scrollbar-width: none;
    aspect-ratio: 390 / 844;
}

.phone-slider__track::-webkit-scrollbar { display: none; }

.phone-slider__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.phone-slider__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    background: #fff;
}

.phone-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.phone-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--grey-200);
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.phone-slider__dot.is-active {
    background: var(--primary);
    transform: scale(1.15);
}

.cta-band__content { text-align: left; min-width: 0; }

.cta-band h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 800;
    max-width: 16ch;
    color: var(--black);
}

.cta-band p {
    color: var(--grey-500);
    font-size: clamp(16px, 2vw, 18px);
    margin: 20px 0 32px;
    max-width: 34rem;
    line-height: 1.7;
    font-weight: 700;
}

.store-badges { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border: none;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform .15s, filter .15s;
}

.store-badge:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.store-badge i { font-size: 24px; }

.store-badge small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--grey-500);
}

.store-badge span { font-size: 17px; letter-spacing: -0.3px; }

.download-note {
    margin-top: 18px;
    font-size: 14px;
    color: var(--grey-500);
    font-weight: 700;
}

.download-note a { color: var(--primary); text-decoration: underline; }

@media (max-width: 860px) {
    .cta-band__inner { grid-template-columns: 1fr; gap: 36px; }
    .cta-band__content { text-align: center; }
    .cta-band h2 { max-width: none; margin: 0 auto; }
    .cta-band p { margin-left: auto; margin-right: auto; }
    .store-badges { justify-content: center; }
}

@media (max-width: 640px) {
    .hero h1 { max-width: none; padding: 0 4px; }
    .split-text h3 { max-width: none; }
    .mission h2 { max-width: none; }
    .cta-band h2 { max-width: none; }
    .phone-slider { width: min(100%, 240px); }
}

/* ── Footer ── */
footer.site {
    background: var(--white);
    color: var(--black);
    margin-top: 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding: 56px 0 32px;
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-500);
    margin-bottom: 14px;
    font-weight: 800;
}

.footer-col a {
    display: block;
    color: var(--grey-700);
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-col a:hover { color: var(--primary); }

.footer-col--brand { max-width: 300px; }

.footer-col--brand p {
    color: var(--grey-500);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 12px;
}

.brand--footer .brand-name {
    color: var(--black);
}

.footer-bottom {
    border-top: none;
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    color: var(--grey-500);
    font-size: 14px;
    font-weight: 700;
}

/* ── Bannière PWA (vitrine) ── */
.pwa-install-banner {
    position: fixed;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(520px, calc(100vw - 1.5rem));
    animation: pwaBannerIn 0.35s ease both;
}

.pwa-install-banner-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--white);
    border: none;
    box-shadow: none;
}

.pwa-install-banner-inner i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.pwa-install-banner-inner div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.pwa-install-banner-inner strong {
    font-size: 0.875rem;
    color: var(--black);
}

.pwa-install-banner-inner span {
    font-size: 0.75rem;
    color: var(--grey-500);
}

.pwa-install-banner-inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
    border: none;
    box-shadow: none;
}

.pwa-install-dismiss {
    border: none;
    background: transparent;
    color: var(--grey-500);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
    box-shadow: none;
}

@keyframes pwaBannerIn {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Pages légales ── */
.legal-page,
.legal {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 24px;
}

.legal-page h1,
.legal h1 {
    font-size: 38px;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.legal-meta,
.legal .updated {
    color: var(--grey-500);
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 700;
}

.legal-page h2,
.legal h2,
.legal-section h2 {
    font-size: 22px;
    margin: 38px 0 12px;
    letter-spacing: -0.4px;
}

.legal-page p,
.legal p,
.legal-section p {
    color: var(--grey-700);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.65;
}

.legal-page a,
.legal a { color: var(--primary); text-decoration: underline; }

.back-link,
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--grey-500);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 28px;
}

.back-link:hover,
.back-home:hover { color: var(--primary); }

/* Brand wordmark component */
.brand-wordmark { font-weight: 800; letter-spacing: -0.5px; }
.brand-wordmark .brand-meet { color: var(--primary); }
