/**
 * Beriox-HUB — Page d'accueil, visuels par bloc
 * Style SaaS moderne, crédible, simple et efficace
 */

/* ---- Contenu centré et titres lisibles ---- */
.landing-section .container,
.landing-section-alt .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Page d'accueil : annuler le min-height excessif du .container global (évite grande zone blanche après le hero sur mobile) */
.welcome-page .landing-section .container,
.welcome-page .landing-section-alt .container,
.welcome-page .landing-cta-section .container {
    min-height: 0;
}
.landing-section .landing-section-title,
.landing-section-alt .landing-section-title,
.landing-cta-section .landing-section-title {
    color: #1f2937;
}
@media (max-width: 900px) {
    .landing-hero-text {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .landing-hero-logos { justify-content: center; }
    .landing-hero-credibility-wrap { margin-left: auto; margin-right: auto; }
    .landing-hero-benefits { justify-content: center; margin-bottom: 1rem; }
}

/* Mobile : fonds explicites et espacements pour que le contenu après le hero soit bien visible */
@media (max-width: 768px) {
    .landing-section {
        padding: 2.5rem 0;
        background: #ffffff;
    }
    .landing-section-alt {
        background: #f8f9fc;
        padding: 2.5rem 0;
    }
    .welcome-page .landing-section .container,
    .welcome-page .landing-section-alt .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .landing-section-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    .landing-section-lead {
        padding: 0 0.5rem;
    }
}

/* Hero mobile : boîtes et boutons centrés */
@media (max-width: 900px) {
    .landing-hero-buttons {
        justify-content: center;
    }
    .landing-hero-visual {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

/* ---- HERO ---- */
.landing-hero-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.landing-hero-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}
.landing-hero-logo-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.landing-hero-credibility-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.landing-hero-badge { font-size: 0.8rem; }
.landing-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    justify-content: center;
}
.landing-hero-pill {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid transparent;
}
.landing-hero-pill--violet {
    background: rgba(255,255,255,0.22);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.landing-hero-pill--vert {
    background: rgba(16, 185, 129, 0.25);
    color: #fff;
    border-color: rgba(16, 185, 129, 0.45);
}
.landing-hero-pill--orange {
    background: rgba(243, 126, 5, 0.3);
    color: #fff;
    border-color: rgba(243, 126, 5, 0.5);
}
.landing-hero-mockup { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.landing-hero-mockup:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,.3); }
.landing-hero-mockup-img { display: block; width: 100%; height: auto; vertical-align: middle; }
@media (prefers-reduced-motion: no-preference) {
    .landing-hero-inner { animation: landing-fade-in 0.6s ease-out; }
}
@keyframes landing-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- SECTION PROBLÈME (cartes avec icônes, une ligne / slider comme blog) ---- */
#probleme .landing-probleme-slider-wrapper {
    position: relative;
    margin: 0 auto 2rem;
    padding: 0 2.5rem;
    max-width: 100%;
}
#probleme .landing-probleme-slider {
    overflow: hidden;
}
#probleme .landing-probleme-slider .swiper-slide {
    height: auto;
}
#probleme .landing-probleme-slider .landing-probleme-card {
    height: 100%;
}
#probleme .landing-probleme-slider-next,
#probleme .landing-probleme-slider-prev {
    background: linear-gradient(135deg, #5a5fca 0%, #8b5cf6 100%);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(90, 95, 202, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
#probleme .landing-probleme-slider-next:hover,
#probleme .landing-probleme-slider-prev:hover {
    background: linear-gradient(135deg, #4549a8 0%, #7c3aed 100%);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(90, 95, 202, 0.4);
}
#probleme .landing-probleme-slider-next { right: 0.5rem; }
#probleme .landing-probleme-slider-prev { left: 0.5rem; }
#probleme .landing-probleme-slider-pagination {
    position: relative;
    margin-top: 1.25rem;
    bottom: auto;
}
#probleme .landing-probleme-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(90, 95, 202, 0.3);
    opacity: 1;
    transition: transform 0.2s, background 0.2s;
}
#probleme .landing-probleme-slider-pagination .swiper-pagination-bullet-active {
    background: #5a5fca;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    #probleme .landing-probleme-slider-wrapper { padding: 0 2.5rem; }
    #probleme .landing-probleme-slider-next,
    #probleme .landing-probleme-slider-prev { width: 40px; height: 40px; }
    #probleme .landing-probleme-slider-next { right: 0.25rem; }
    #probleme .landing-probleme-slider-prev { left: 0.25rem; }
}
.landing-probleme-card {
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.landing-probleme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-color: rgba(90, 95, 202, 0.25);
}
.landing-probleme-card .landing-icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 12px;
    background: rgba(90, 95, 202, 0.12);
    color: #5a5fca;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-probleme-card .landing-icon-wrap svg { width: 24px; height: 24px; }
.landing-probleme-card span { font-size: 0.95rem; font-weight: 500; color: #374151; }
.landing-probleme-arrow {
    display: block;
    text-align: center;
    margin: 1.5rem 0;
    color: #5a5fca;
}
.landing-probleme-arrow svg { width: 32px; height: 32px; opacity: 0.8; }

/* ---- SECTION SOLUTION (3 piliers avec couleurs, encadré phrase) ---- */
.landing-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) {
    .landing-pillars { grid-template-columns: 1fr; }
}
.landing-pillar {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}
.landing-pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.landing-pillar .landing-icon-wrap {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-pillar .landing-icon-wrap svg { width: 22px; height: 22px; }
.landing-pillar--analytics { background: rgba(90, 95, 202, 0.08); border-color: rgba(90, 95, 202, 0.2); color: #3730a3; }
.landing-pillar--analytics .landing-icon-wrap { background: rgba(90, 95, 202, 0.15); color: #5a5fca; }
.landing-pillar--seo { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); color: #047857; }
.landing-pillar--seo .landing-icon-wrap { background: rgba(16, 185, 129, 0.15); color: #059669; }
.landing-pillar--prospection { background: rgba(243, 126, 5, 0.08); border-color: rgba(243, 126, 5, 0.25); color: #c2410c; }
.landing-pillar--prospection .landing-icon-wrap { background: rgba(243, 126, 5, 0.15); color: #F37E05; }
.landing-keyphrase-box {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(90, 95, 202, 0.1) 0%, rgba(90, 95, 202, 0.05) 100%);
    border: 1px solid rgba(90, 95, 202, 0.25);
    border-radius: 12px;
    text-align: center;
}

/* ---- FONCTIONNALITÉS (blocs avec icônes, badges) ---- */
.landing-block {
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-block:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.landing-block-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.landing-block-icon svg { width: 20px; height: 20px; }
.landing-block--analytics .landing-block-icon { background: rgba(90, 95, 202, 0.12); color: #5a5fca; }
.landing-block--seo .landing-block-icon { background: rgba(16, 185, 129, 0.12); color: #059669; }
.landing-block--ads .landing-block-icon { background: rgba(234, 88, 12, 0.12); color: #ea580c; }
.landing-block-highlight .landing-block-icon { background: rgba(243, 126, 5, 0.15); color: #F37E05; }
.landing-block-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.landing-block--analytics .landing-block-badge { background: rgba(90, 95, 202, 0.15); color: #4f46e5; }
.landing-block--seo .landing-block-badge { background: rgba(16, 185, 129, 0.15); color: #047857; }
.landing-block--ads .landing-block-badge { background: rgba(234, 88, 12, 0.15); color: #c2410c; }
.landing-block-highlight .landing-block-badge { background: rgba(243, 126, 5, 0.2); color: #b45309; }

/* ---- Slider « Ce que l'outil permet » (Swiper, même style que blog) ---- */
#outil .landing-outil-slider-wrapper {
    position: relative;
    margin-top: 2rem;
    padding: 0 3rem;
    overflow: visible;
}
#outil .landing-outil-slider {
    overflow: hidden;
    border-radius: 16px;
}
#outil .landing-outil-slider .swiper-wrapper {
    align-items: stretch;
}
#outil .landing-outil-slider .swiper-slide {
    height: auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
    display: flex;
}
#outil .landing-outil-slider .swiper-slide .landing-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
}
/* Contenu visible en entier, même hauteur de colonnes : le bloc s’étire, le texte ne se coupe pas */
#outil .landing-outil-slider .swiper-slide .landing-block-desc,
#outil .landing-outil-slider .swiper-slide .landing-block-list {
    flex: 0 1 auto;
    overflow: visible;
}
#outil .landing-outil-slider .swiper-slide .landing-block-note {
    margin-top: auto;
}
#outil .landing-outil-slider-next,
#outil .landing-outil-slider-prev {
    background: linear-gradient(135deg, #5a5fca 0%, #8b5cf6 100%);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(90, 95, 202, 0.35);
    position: absolute;
    z-index: 10;
}
#outil .landing-outil-slider-next:hover,
#outil .landing-outil-slider-prev:hover {
    background: linear-gradient(135deg, #4549a8 0%, #7c3aed 100%);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(90, 95, 202, 0.45);
}
#outil .landing-outil-slider-next::after,
#outil .landing-outil-slider-prev::after {
    font-size: 16px;
    font-weight: 900;
}
#outil .landing-outil-slider-next { right: 0.5rem; }
#outil .landing-outil-slider-prev { left: 0.5rem; }
#outil .landing-outil-slider-pagination {
    position: relative;
    margin-top: 1.5rem;
    bottom: auto;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
#outil .landing-outil-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(90, 95, 202, 0.25);
    opacity: 1;
    transition: transform 0.2s, background 0.2s;
}
#outil .landing-outil-slider-pagination .swiper-pagination-bullet-active {
    background: #5a5fca;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    #outil .landing-outil-slider-wrapper { padding: 0 2.5rem; }
    #outil .landing-outil-slider-next { right: 0.25rem; }
    #outil .landing-outil-slider-prev { left: 0.25rem; }
    #outil .landing-outil-slider-next,
    #outil .landing-outil-slider-prev { width: 40px; height: 40px; }
    #outil .landing-outil-slider-next::after,
    #outil .landing-outil-slider-prev::after { font-size: 14px; }
}

/* ---- POUR QUI (personas, hover bénéfices) ---- */
.landing-cards { gap: 1.5rem; }
.landing-card {
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: rgba(90, 95, 202, 0.25);
}
.landing-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-card-icon svg { width: 26px; height: 26px; }
.landing-card:nth-child(1) .landing-card-icon,
.landing-card--pme .landing-card-icon { background: rgba(90, 95, 202, 0.12); color: #5a5fca; }
.landing-card:nth-child(2) .landing-card-icon,
.landing-card--agences .landing-card-icon { background: rgba(16, 185, 129, 0.12); color: #059669; }
.landing-card:nth-child(3) .landing-card-icon,
.landing-card--equipes .landing-card-icon { background: rgba(243, 126, 5, 0.12); color: #F37E05; }
.landing-card-desc { transition: opacity 0.2s; }

/* ---- POUR QUI slider (carte du centre plus grande) ---- */
.landing-pourqui-slider-wrapper {
    position: relative;
    margin-top: 2rem;
    padding: 0 4rem;
    overflow: visible;
}
.landing-pourqui-slider {
    position: relative;
    overflow: hidden;
}
.landing-pourqui-slider .swiper-wrapper {
    align-items: center;
}
.landing-pourqui-slider .swiper-slide {
    height: auto;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.landing-pourqui-slider .swiper-slide .landing-card {
    height: 100%;
    margin: 0 auto;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* Côtés : cartes plus petites */
.landing-pourqui-slider .swiper-slide {
    transform: scale(0.88);
    opacity: 0.85;
}
.landing-pourqui-slider .swiper-slide .landing-card {
    max-width: 280px;
}
/* Centre : carte plus grande */
.landing-pourqui-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}
.landing-pourqui-slider .swiper-slide-active .landing-card {
    max-width: 320px;
    box-shadow: 0 12px 40px rgba(90, 95, 202, 0.15);
    border-color: rgba(90, 95, 202, 0.3);
}
.landing-pourqui-slider-next,
.landing-pourqui-slider-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #5a5fca;
    color: #fff;
    box-shadow: 0 4px 14px rgba(90, 95, 202, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-pourqui-slider-next:hover,
.landing-pourqui-slider-prev:hover {
    transform: translateY(-50%) scale(1.08);
    background: #4f46e5;
    box-shadow: 0 6px 20px rgba(90, 95, 202, 0.45);
}
.landing-pourqui-slider-next::after,
.landing-pourqui-slider-prev::after {
    font-size: 16px;
    font-weight: 900;
}
.landing-pourqui-slider-next { right: 0.5rem; }
.landing-pourqui-slider-prev { left: 0.5rem; }
@media (max-width: 768px) {
    .landing-pourqui-slider-wrapper { padding: 0 3rem; }
    .landing-pourqui-slider .swiper-slide .landing-card { max-width: 260px; }
    .landing-pourqui-slider .swiper-slide-active .landing-card { max-width: 300px; }
    .landing-pourqui-slider-next,
    .landing-pourqui-slider-prev { width: 40px; height: 40px; }
    .landing-pourqui-slider-next::after,
    .landing-pourqui-slider-prev::after { font-size: 14px; }
}

/* ---- Pills (tags réutilisables sur le site) ---- */
.pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pill:hover { transform: translateY(-1px); }
.pill--current {
    background: rgba(90, 95, 202, 0.1);
    border-color: rgba(90, 95, 202, 0.35);
    color: #4f46e5;
}
.pill--warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: #b45309;
}
.pill--muted {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #6b7280;
}
.pill--primary {
    background: rgba(90, 95, 202, 0.12);
    border-color: rgba(90, 95, 202, 0.3);
    color: #5a5fca;
}
.pill--success {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #047857;
}

/* ---- ACCÈS LIMITÉ (pills + checklist WIP) ---- */
.landing-list-simple.landing-list-check-style li { padding-left: 1.75rem; }
.landing-list-simple.landing-list-check-style li::before { content: '✓'; color: #059669; }
.landing-acces-box {
    padding: 2rem;
    background: #fff;
    border: 1px dashed rgba(90, 95, 202, 0.3);
    border-radius: 16px;
    margin-top: 1.5rem;
    position: relative;
}
.landing-acces-box::before {
    content: 'Phase bêta';
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5a5fca;
    background: #fff;
    padding: 0 0.5rem;
}
.landing-acces-box,
.landing-acces-box * {
    color: #374151;
}
.landing-acces-box .landing-keyphrase {
    color: #5a5fca;
}

/* ---- AVANTAGES ACCÈS ANTICIPÉ (style VIP, icônes positives) ---- */
#avantages-acces .landing-section-title,
#avantages-acces .landing-list-check,
#avantages-acces .landing-list-check li {
    color: #1f2937;
}
.landing-list-check {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.landing-list-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #374151;
}
.landing-list-check li:hover { border-color: rgba(90, 95, 202, 0.3); box-shadow: 0 4px 12px rgba(0,0,0,.04); }
.landing-list-check li::before { content: none; }
.landing-list-check .landing-icon-wrap {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-list-check .landing-icon-wrap svg { width: 16px; height: 16px; }

/* ---- ÉCOSYSTÈME (mockups, icônes plateformes) ---- */
.landing-eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 640px) { .landing-eco-grid { grid-template-columns: 1fr; } }
.landing-eco-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-eco-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.landing-eco-mockup {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5fca;
}
.landing-eco-mockup svg { width: 32px; height: 32px; }
.landing-eco-item span { font-weight: 600; color: #2d2d41; font-size: 0.95rem; }

/* ---- CTA FINAL (bloc contrasté, bouton large) ---- */
.landing-cta-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #5a5fca 0%, #4f46e5 50%);
    color: #fff;
    text-align: center;
}
.landing-cta-section .landing-section-title { color: #fff; }
.landing-cta-section .landing-section-lead { color: rgba(255,255,255,0.9); }
.landing-cta-section .landing-hero-buttons { justify-content: center; margin-top: 1.5rem; }
.landing-cta-section .landing-cta-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.landing-cta-section .landing-cta-secondary {
    background: #fff !important;
    color: #5a5fca !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
}
.landing-cta-section .landing-cta-secondary:hover {
    background: #f8fafc !important;
    color: #4f46e5 !important;
    border-color: #fff !important;
}
.landing-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.landing-reassurance span { display: inline-flex; align-items: center; gap: 0.35rem; }
.landing-reassurance svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.9; }

/* ---- Micro rassurance (bouclier, checkmarks) ---- */
.landing-reassurance .landing-icon-mini { width: 16px; height: 16px; }
