/* =============================================================================
   LUXING LANDING — Stylesheet dédié (Phase A refonte)

   Scope : toute la landing publique (welcome.blade.php) — wrappée dans
   un conteneur `.lx-landing` pour ne pas polluer les autres pages.

   Palette spec brief (2026-04) :
     Primaire navy   #0A1F44  (autorité, banque privée suisse)
     Accent gold     #C9A961  (premium, différenciation SaaS)
     Neutre ivoire   #F5F2EA  (sections alternées, chaleur)
     Charbon texte   #1A1A1A
   Typographie :
     Display (H1-H3) : Fraunces — serif éditorial moderne
     Body            : Inter — lisibilité écran

   Dépendance : tokens lx-* déjà définis dans
   public/template/css/dashboard/tokens.css (scopés body.luxing-app).
   Cette feuille redéfinit certains tokens dans .lx-landing pour matcher
   la palette éditoriale spécifique landing (plus saturée, plus "premium"
   que le dashboard).
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. FONTS — chargées en tête via <link> dans welcome.blade.php
      (rel="preconnect" fonts.googleapis.com + display=swap pour LCP).
   -----------------------------------------------------------------------------*/

/* -----------------------------------------------------------------------------
   2. SCOPE & TOKENS — override palette pour la landing
   -----------------------------------------------------------------------------*/
.lx-landing {
    /* Palette landing (brief Avril 2026) */
    --lxl-navy:        #0A1F44;
    --lxl-navy-dark:   #06122A;
    --lxl-navy-700:    #0f2a58;
    --lxl-navy-alpha:  rgba(10, 31, 68, 0.06);

    --lxl-gold:        #C9A961;
    --lxl-gold-dark:   #a88a47;
    --lxl-gold-light:  #e5d4a0;
    --lxl-gold-bg:     rgba(201, 169, 97, 0.12);

    --lxl-ivory:       #F5F2EA;
    --lxl-ivory-deep:  #EDE7D5;

    --lxl-charcoal:    #1A1A1A;
    --lxl-muted:       #6B6457;
    --lxl-border:      rgba(10, 31, 68, 0.08);

    --lxl-success:     #2D7A4F;
    --lxl-error:       #B91C1C;

    /* Typographie */
    --lxl-font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --lxl-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Ratios tailles (desktop / mobile géré en media query) */
    --lxl-h1:   clamp(2.5rem, 5vw + 1rem, 4rem);      /* 64 → 40 mobile */
    --lxl-h2:   clamp(2rem, 3.5vw + 0.5rem, 2.75rem); /* 44 → 32 mobile */
    --lxl-h3:   clamp(1.5rem, 2vw + 0.5rem, 1.875rem);
    --lxl-lead: clamp(1.0625rem, 0.8vw + 0.85rem, 1.25rem); /* 20 → 17 */
    --lxl-body: 1.0625rem; /* 17px */

    /* Layout */
    --lxl-container: 1200px;
    --lxl-section-py: clamp(3rem, 6vw, 5rem); /* 80 → 48 */
    --lxl-gap: 1.5rem;

    /* Base */
    font-family: var(--lxl-font-body);
    color: var(--lxl-charcoal);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset global landing — annule styles Bootstrap résiduels */
.lx-landing *,
.lx-landing *::before,
.lx-landing *::after { box-sizing: border-box; }

.lx-landing a { color: var(--lxl-navy); text-decoration: none; transition: color 150ms ease; }
.lx-landing a:hover { color: var(--lxl-gold-dark); }

.lx-landing h1, .lx-landing h2, .lx-landing h3, .lx-landing h4 {
    font-family: var(--lxl-font-display);
    color: var(--lxl-charcoal);
    line-height: 1.15;
    letter-spacing: -0.015em;
    font-weight: 500;
    margin: 0;
}
.lx-landing h1 { font-size: var(--lxl-h1); font-weight: 600; }
.lx-landing h2 { font-size: var(--lxl-h2); font-weight: 600; }
.lx-landing h3 { font-size: var(--lxl-h3); }
.lx-landing p  { margin: 0; line-height: 1.6; font-size: var(--lxl-body); }

/* -----------------------------------------------------------------------------
   3. LAYOUT — sections + container
   -----------------------------------------------------------------------------*/
.lxl-section {
    padding-top: var(--lxl-section-py);
    padding-bottom: var(--lxl-section-py);
    position: relative;
}
.lxl-section--ivory { background: var(--lxl-ivory); }
.lxl-section--navy  { background: var(--lxl-navy); color: #fff; }
.lxl-section--navy h1, .lxl-section--navy h2, .lxl-section--navy h3 { color: #fff; }
.lxl-section--navy p { color: rgba(255,255,255,0.82); }

.lxl-container {
    max-width: var(--lxl-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (max-width: 767px) {
    .lxl-container { padding: 0 1.25rem; }
}

/* Eyebrow (suptitle) */
.lxl-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lxl-gold-dark);
    margin-bottom: 1rem;
}
.lxl-section--navy .lxl-eyebrow { color: var(--lxl-gold-light); }

/* Section header centré (h2 + lead) */
.lxl-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.lxl-section-header p {
    color: var(--lxl-muted);
    font-size: var(--lxl-lead);
    margin-top: 0.75rem;
}

/* -----------------------------------------------------------------------------
   4. BUTTONS — CTA styles landing (distincts des lx-btn dashboard)
   -----------------------------------------------------------------------------*/
.lxl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-family: var(--lxl-font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    white-space: nowrap;
}
.lxl-btn:hover { transform: translateY(-1px); }
.lxl-btn--gold {
    background: var(--lxl-gold);
    color: var(--lxl-navy-dark);
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
}
.lxl-btn--gold:hover {
    background: var(--lxl-gold-dark);
    color: #fff;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.45);
}
.lxl-btn--navy {
    background: var(--lxl-navy);
    color: #fff;
    box-shadow: 0 4px 14px rgba(10, 31, 68, 0.25);
}
.lxl-btn--navy:hover { background: var(--lxl-navy-dark); color: #fff; }
.lxl-btn--ghost {
    background: transparent;
    color: var(--lxl-navy);
    border-color: var(--lxl-navy);
}
.lxl-section--navy .lxl-btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.lxl-btn--ghost:hover { background: var(--lxl-navy); color: #fff; }

.lxl-btn--lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.lxl-btn--block { width: 100%; }

/* Pulse subtle sur CTA primaire (attire l'oeil sans harceler) */
.lxl-btn--pulse {
    animation: lxl-pulse 4s ease-in-out 2s 2;
}
@keyframes lxl-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

/* Link CTA (text-link) */
.lxl-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--lxl-navy);
    font-weight: 500;
    font-size: 0.9375rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 150ms ease, color 150ms ease;
}
.lxl-link-cta:hover { border-color: var(--lxl-navy); color: var(--lxl-navy-dark); }
.lxl-section--navy .lxl-link-cta { color: #fff; }
.lxl-section--navy .lxl-link-cta:hover { border-color: #fff; }

/* -----------------------------------------------------------------------------
   5. HERO
   -----------------------------------------------------------------------------*/
.lxl-hero {
    background: linear-gradient(135deg, #0A1F44 0%, #06122A 55%, #0A1F44 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 6rem);
    position: relative;
    overflow: hidden;
}
.lxl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(201, 169, 97, 0.15), transparent 60%),
        radial-gradient(ellipse at 20% 70%, rgba(201, 169, 97, 0.08), transparent 50%);
    pointer-events: none;
}
.lxl-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .lxl-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.lxl-hero h1 { color: #fff; }
.lxl-hero .lxl-eyebrow { color: var(--lxl-gold-light); }
.lxl-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: var(--lxl-lead);
    margin: 1.25rem 0 2rem;
    max-width: 560px;
}
.lxl-hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.lxl-hero-badges {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.lxl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.8125rem;
}
.lxl-hero-badge::before {
    content: '✓';
    color: var(--lxl-gold);
    font-weight: 700;
}

/* Scarcity counter */
.lxl-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 0.625rem 1rem;
    border-radius: 999px;
    color: var(--lxl-gold-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
}
.lxl-scarcity-dot {
    width: 8px; height: 8px;
    background: var(--lxl-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    animation: lxl-scarcity-pulse 2s infinite;
}
@keyframes lxl-scarcity-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(201, 169, 97, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}
.lxl-scarcity strong { color: #fff; margin: 0 2px; }

/* Hero visual — mockup BP (placeholder sobre) */
.lxl-hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin-left: auto;
}
.lxl-hero-mockup {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #fff 0%, #F5F2EA 100%);
    border-radius: 12px;
    box-shadow:
        0 40px 80px -20px rgba(0,0,0,0.4),
        0 20px 40px -10px rgba(0,0,0,0.25);
    transform: rotate(-2deg);
    padding: 2rem 2.25rem;
    overflow: hidden;
}
.lxl-hero-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--lxl-border);
    margin-bottom: 1.25rem;
}
.lxl-hero-mockup-header-title {
    font-family: var(--lxl-font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lxl-navy);
}
.lxl-hero-mockup-header-sub { font-size: 0.75rem; color: var(--lxl-muted); }
.lxl-hero-mockup-section { margin-bottom: 1rem; }
.lxl-hero-mockup-section h4 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lxl-gold-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--lxl-font-body);
}
.lxl-hero-mockup-bar {
    height: 6px;
    background: var(--lxl-ivory-deep);
    border-radius: 3px;
    margin-bottom: 0.5rem;
}
.lxl-hero-mockup-bar--60 { width: 60%; }
.lxl-hero-mockup-bar--80 { width: 80%; }
.lxl-hero-mockup-bar--45 { width: 45%; }
.lxl-hero-mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
    margin-top: 0.75rem;
}
.lxl-hero-mockup-chart > div {
    flex: 1;
    background: linear-gradient(180deg, var(--lxl-gold) 0%, var(--lxl-gold-dark) 100%);
    border-radius: 3px 3px 0 0;
    min-height: 15%;
}

.lxl-hero-mockup-badge {
    position: absolute;
    top: -16px;
    right: -12px;
    background: var(--lxl-gold);
    color: var(--lxl-navy-dark);
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    transform: rotate(6deg);
}

@media (max-width: 991px) {
    .lxl-hero-visual { margin: 0 auto; max-width: 360px; }
}

/* -----------------------------------------------------------------------------
   6. SOCIAL PROOF (sources data)
   -----------------------------------------------------------------------------*/
.lxl-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 3rem;
    margin-top: 2rem;
}
@media (max-width: 767px) { .lxl-logos { gap: 1.5rem 2rem; } }

/* Logo placeholder : texte stylisé en attendant SVG réels */
.lxl-logo-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--lxl-font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--lxl-muted);
    letter-spacing: -0.01em;
    opacity: 0.7;
    transition: opacity 200ms ease, color 200ms ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}
.lxl-logo-placeholder:hover { opacity: 1; color: var(--lxl-navy); }
.lxl-logo-placeholder-mark {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--lxl-navy) 0%, var(--lxl-gold-dark) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0;
}

/* -----------------------------------------------------------------------------
   7. PRICING CARDS (Testeur offre + 2 plans)
   -----------------------------------------------------------------------------*/
.lxl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .lxl-pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
}

.lxl-price-card {
    background: #fff;
    border: 1px solid var(--lxl-border);
    border-radius: 16px;
    padding: 2.25rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.lxl-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(10, 31, 68, 0.12);
}
.lxl-price-card--featured {
    background: linear-gradient(165deg, var(--lxl-navy) 0%, var(--lxl-navy-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 20px 50px -10px rgba(10, 31, 68, 0.35);
    transform: scale(1.03);
}
.lxl-price-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 30px 60px -10px rgba(10, 31, 68, 0.45);
}
@media (max-width: 991px) {
    .lxl-price-card--featured { transform: none; }
    .lxl-price-card--featured:hover { transform: translateY(-4px); }
}

.lxl-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lxl-gold);
    color: var(--lxl-navy-dark);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
    white-space: nowrap;
}
.lxl-price-title {
    font-family: var(--lxl-font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.lxl-price-card--featured .lxl-price-title { color: #fff; }
.lxl-price-sub {
    font-size: 0.875rem;
    color: var(--lxl-muted);
    margin-bottom: 1.5rem;
    min-height: 2.5em;
}
.lxl-price-card--featured .lxl-price-sub { color: rgba(255,255,255,0.65); }

.lxl-price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.lxl-price-amount-num {
    font-family: var(--lxl-font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--lxl-navy);
}
.lxl-price-card--featured .lxl-price-amount-num { color: var(--lxl-gold); }
.lxl-price-amount-currency { font-size: 1rem; color: var(--lxl-muted); font-weight: 500; }
.lxl-price-amount-period   { font-size: 0.9375rem; color: var(--lxl-muted); }
.lxl-price-card--featured .lxl-price-amount-period { color: rgba(255,255,255,0.7); }

.lxl-price-old {
    text-decoration: line-through;
    color: var(--lxl-muted);
    font-size: 1rem;
    margin-left: 0.5rem;
}
.lxl-price-regular {
    font-size: 0.8125rem;
    color: var(--lxl-muted);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.lxl-price-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
}
.lxl-price-features li {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.lxl-price-features li::before {
    content: '✓';
    color: var(--lxl-gold-dark);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.lxl-price-card--featured .lxl-price-features li::before { color: var(--lxl-gold); }

.lxl-price-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--lxl-muted);
    margin-top: 2rem;
}
.lxl-price-scarcity-line {
    text-align: center;
    color: var(--lxl-gold-dark);
    font-weight: 600;
    margin-top: 2rem;
    font-size: 0.9375rem;
}

/* -----------------------------------------------------------------------------
   8. CTA FINAL (breakout navy)
   -----------------------------------------------------------------------------*/
.lxl-final-cta {
    background: linear-gradient(135deg, #0A1F44 0%, #06122A 60%, #0A1F44 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.lxl-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.18), transparent 60%);
    pointer-events: none;
}
.lxl-final-cta > * { position: relative; z-index: 1; }
.lxl-final-cta h2 {
    color: #fff;
    max-width: 840px;
    margin: 0 auto 1.25rem;
    font-size: clamp(2rem, 4vw, 3rem);
}
.lxl-final-cta p {
    color: rgba(255,255,255,0.82);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    font-size: var(--lxl-lead);
}
.lxl-final-cta-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}
.lxl-final-cta-badges span { display: inline-flex; align-items: center; gap: 0.35rem; }
.lxl-final-cta-badges span::before { content: '✓'; color: var(--lxl-gold); font-weight: 700; }

/* -----------------------------------------------------------------------------
   9. SCROLL REVEAL (IntersectionObserver natif, léger)
   -----------------------------------------------------------------------------*/
.lx-landing [data-lxl-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.lx-landing [data-lxl-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lx-landing [data-lxl-reveal-delay="1"] { transition-delay: 80ms; }
.lx-landing [data-lxl-reveal-delay="2"] { transition-delay: 160ms; }
.lx-landing [data-lxl-reveal-delay="3"] { transition-delay: 240ms; }

/* Reduced motion — respect utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
    .lx-landing [data-lxl-reveal] { opacity: 1; transform: none; transition: none; }
    .lxl-btn--pulse { animation: none; }
    .lxl-scarcity-dot { animation: none; }
}

/* -----------------------------------------------------------------------------
   10. ACCESSIBILITÉ — focus visible renforcé
   -----------------------------------------------------------------------------*/
.lx-landing a:focus-visible,
.lx-landing button:focus-visible,
.lx-landing .lxl-btn:focus-visible {
    outline: 3px solid var(--lxl-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* -----------------------------------------------------------------------------
   11. SECTION #testeur — formulaire candidature programme
   -----------------------------------------------------------------------------*/
.lx-landing .lxl-testeur-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}
@media (max-width: 900px) {
    .lx-landing .lxl-testeur-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.lx-landing .lxl-testeur-aside {
    background: linear-gradient(180deg, var(--lxl-navy) 0%, #0E2654 100%);
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: sticky;
    top: 2rem;
    box-shadow: 0 20px 60px -20px rgba(10, 31, 68, 0.35);
}
@media (max-width: 900px) {
    .lx-landing .lxl-testeur-aside { position: static; }
}

.lx-landing .lxl-testeur-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--lxl-gold-light, #E8C976);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.lx-landing .lxl-testeur-scarcity strong { color: #fff; font-size: 1rem; }

.lx-landing .lxl-testeur-aside-title {
    font-family: var(--lxl-font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 1.25rem;
    color: #fff;
}

.lx-landing .lxl-testeur-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.lx-landing .lxl-testeur-benefits li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}
.lx-landing .lxl-testeur-benefits li strong { color: #fff; }
.lx-landing .lxl-testeur-benefits li span { color: rgba(255, 255, 255, 0.72); font-size: 0.875rem; }

.lx-landing .lxl-bullet-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--lxl-gold);
    color: var(--lxl-navy);
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lx-landing .lxl-testeur-aside-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Form */
.lx-landing .lxl-testeur-form {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px -15px rgba(10, 31, 68, 0.15);
    border: 1px solid rgba(10, 31, 68, 0.06);
}
@media (max-width: 500px) {
    .lx-landing .lxl-testeur-form { padding: 1.75rem 1.25rem; }
}

.lx-landing .lxl-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 1.75rem;
}
.lx-landing .lxl-fieldset legend {
    font-family: var(--lxl-font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--lxl-navy);
    margin-bottom: 1rem;
    padding: 0;
}

.lx-landing .lxl-form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}
.lx-landing .lxl-form-row--2 { grid-template-columns: repeat(2, 1fr); }
.lx-landing .lxl-form-row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) {
    .lx-landing .lxl-form-row--2,
    .lx-landing .lxl-form-row--3 { grid-template-columns: 1fr; }
}

.lx-landing .lxl-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.lx-landing .lxl-form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lxl-charcoal, #1A1A1A);
    letter-spacing: 0.01em;
}
.lx-landing .lxl-required { color: #D14343; font-weight: 600; }

.lx-landing .lxl-form-group input,
.lx-landing .lxl-form-group select,
.lx-landing .lxl-form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    background: var(--lxl-ivory, #F5F2EA);
    border: 1px solid rgba(10, 31, 68, 0.1);
    border-radius: 8px;
    font-family: var(--lxl-font-body);
    font-size: 0.9375rem;
    color: var(--lxl-charcoal);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    box-sizing: border-box;
}
.lx-landing .lxl-form-group textarea { resize: vertical; min-height: 100px; }
.lx-landing .lxl-form-group input:focus,
.lx-landing .lxl-form-group select:focus,
.lx-landing .lxl-form-group textarea:focus {
    outline: none;
    border-color: var(--lxl-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.lx-landing .lxl-form-group input::placeholder,
.lx-landing .lxl-form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.lx-landing .lxl-form-check .lxl-checkbox {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.625rem;
    align-items: start;
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 1.25rem;
}
.lx-landing .lxl-form-check input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; accent-color: var(--lxl-gold);
}
.lx-landing .lxl-link { color: var(--lxl-gold-dark, #A8893F); text-decoration: underline; }

.lx-landing .lxl-testeur-form-footnote {
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.55);
    text-align: center;
    margin: 1rem 0 0;
    line-height: 1.5;
}

/* Alerts */
.lx-landing .lxl-alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.lx-landing .lxl-alert--success {
    background: #E8F5E8;
    color: #1E6B3A;
    border: 1px solid #B5DBB5;
}
.lx-landing .lxl-alert--error {
    background: #FDECEC;
    color: #A52828;
    border: 1px solid #F0C2C2;
}
.lx-landing .lxl-alert ul { margin: 0.5rem 0 0 1.25rem; padding: 0; }

/* -----------------------------------------------------------------------------
   12. FOOTER
   -----------------------------------------------------------------------------*/
.lx-landing .lxl-footer {
    background: var(--lxl-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    font-size: 0.9375rem;
}
.lx-landing .lxl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 860px) {
    .lx-landing .lxl-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .lx-landing .lxl-footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
    .lx-landing .lxl-footer-grid { grid-template-columns: 1fr; }
}

.lx-landing .lxl-footer-col h3 {
    font-family: var(--lxl-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lxl-gold);
    margin: 0 0 1rem;
}
.lx-landing .lxl-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.lx-landing .lxl-footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 160ms ease;
}
.lx-landing .lxl-footer-col a:hover { color: var(--lxl-gold-light, #E8C976); }

.lx-landing .lxl-footer-logo { display: inline-block; color: #fff; text-decoration: none; margin-bottom: 1rem; }
.lx-landing .lxl-footer-tagline { color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin: 0 0 1rem; max-width: 420px; }
.lx-landing .lxl-footer-meta { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); margin: 0; }

.lx-landing .lxl-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap; gap: 1rem;
}
.lx-landing .lxl-footer-bottom p { margin: 0; }

/* =============================================================================
   13. V2 — STYLE MODERNE CENTRÉ (refonte Avril 2026, inspiration Skooléo/Linear)
   =============================================================================
   Principes : Inter uniquement (pas de serif), hiérarchie typo massive,
   boutons fully-rounded pills, fond quasi-blanc avec subtle tint,
   whitespace généreux, H1 mono-police avec UN mot en accent gold.
   ============================================================================= */

/* --- Tokens overrides --- */
.lx-landing {
    --lxl-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lxl-bg: #FDFCFA; /* quasi-blanc, soupçon de chaud */
    --lxl-bg-soft: #F8F6F1;

    /* Typo scales — plus massif */
    --lxl-h1: clamp(2.75rem, 4vw + 1.5rem, 5.25rem);
    --lxl-h2: clamp(2rem, 2.5vw + 1rem, 3.5rem);
    --lxl-body-lg: clamp(1.0625rem, 0.5vw + 0.9rem, 1.25rem);
}

/* Body landing : fond light, texte heavy */
.lx-landing {
    background: var(--lxl-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--lxl-navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Forcer Inter partout (override Fraunces) */
.lx-landing h1,
.lx-landing h2,
.lx-landing h3,
.lx-landing h4,
.lx-landing .lxl-hero-title,
.lx-landing .lxl-section-header h2,
.lx-landing .lxl-fieldset legend,
.lx-landing .lxl-footer-logo span,
.lx-landing .lxl-testeur-aside-title,
.lx-landing .lxl-price-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: -0.035em;
    font-weight: 800;
}

/* --- Hero centré --- */
.lx-landing .lxl-hero--centered {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    text-align: center;
    background: linear-gradient(180deg, var(--lxl-bg) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.lx-landing .lxl-hero--centered::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(10, 31, 68, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.lx-landing .lxl-hero--centered > .lxl-container {
    position: relative;
    max-width: 960px;
    text-align: center;
}

/* Pill badge */
.lx-landing .lxl-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.28);
    color: var(--lxl-gold-dark, #A8893F);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    margin-bottom: 1.75rem;
}

/* H1 massif */
.lx-landing .lxl-hero-title {
    font-size: var(--lxl-h1);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--lxl-navy);
    margin: 0 auto 1.75rem;
    max-width: 14ch;
}
@media (min-width: 900px) {
    .lx-landing .lxl-hero-title { max-width: 18ch; }
}
.lx-landing .lxl-hero-title .lxl-accent {
    color: var(--lxl-gold);
    display: inline; /* même ligne pour permettre le wrap naturel */
}

/* Subtitle */
.lx-landing .lxl-hero-subtitle {
    font-size: var(--lxl-body-lg);
    line-height: 1.55;
    color: #556079; /* gris navy-tinted */
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}
.lx-landing .lxl-hero-subtitle strong {
    color: var(--lxl-navy);
    font-weight: 600;
}

/* CTAs row centrée */
.lx-landing .lxl-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
@media (max-width: 500px) {
    .lx-landing .lxl-hero-ctas { flex-direction: column; align-items: stretch; }
    .lx-landing .lxl-hero-ctas .lxl-btn { width: 100%; }
}

/* Scarcity sous CTAs */
.lx-landing .lxl-hero-scarcity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #556079;
    margin-bottom: 2.25rem;
}
.lx-landing .lxl-hero-scarcity strong { color: var(--lxl-navy); font-weight: 700; }

/* Trust row */
.lx-landing .lxl-hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    font-size: 0.8125rem;
    color: #6B7280;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 31, 68, 0.08);
    max-width: 700px;
    margin: 0 auto;
}
.lx-landing .lxl-hero-trust span { display: inline-flex; align-items: center; gap: 0.375rem; font-weight: 500; }

/* --- Boutons modernes : fully-rounded pills --- */
.lx-landing .lxl-btn {
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.005em;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.lx-landing .lxl-btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}
.lx-landing .lxl-btn--gold {
    background: var(--lxl-navy);
    color: #fff;
    box-shadow: 0 4px 14px -4px rgba(10, 31, 68, 0.35);
}
.lx-landing .lxl-btn--gold:hover {
    background: #0E2654;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -6px rgba(10, 31, 68, 0.45);
}
.lx-landing .lxl-btn--ghost {
    background: #fff;
    color: var(--lxl-navy);
    border: 1.5px solid rgba(10, 31, 68, 0.14);
}
.lx-landing .lxl-btn--ghost:hover {
    border-color: var(--lxl-navy);
    background: #fff;
    transform: translateY(-1px);
}

/* --- Section headers centrés (pricing, testeur, etc.) --- */
.lx-landing .lxl-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.lx-landing .lxl-section-header h2 {
    font-size: var(--lxl-h2);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--lxl-navy);
    margin: 0.5rem 0 1rem;
}
.lx-landing .lxl-section-header p {
    font-size: var(--lxl-body-lg);
    color: #556079;
    line-height: 1.6;
    margin: 0;
}
.lx-landing .lxl-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lxl-gold-dark, #A8893F);
    margin-bottom: 0.25rem;
}

/* --- Sections : plus d'air --- */
.lx-landing .lxl-section { padding: clamp(4rem, 7vw, 6.5rem) 0; }

/* --- Final CTA : reprise style centré moderne --- */
.lx-landing .lxl-final-cta { padding: clamp(4rem, 7vw, 6.5rem) 0; text-align: center; }
.lx-landing .lxl-final-cta h2 {
    font-size: var(--lxl-h2);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.035em;
    max-width: 20ch;
    margin: 0.75rem auto 1.25rem;
}

/* --- Price cards : coins arrondis plus doux, ombres subtiles --- */
.lx-landing .lxl-price-card {
    border-radius: 20px;
    border: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 2px 8px -4px rgba(10, 31, 68, 0.06);
}
.lx-landing .lxl-price-card--featured {
    border: 1.5px solid var(--lxl-gold);
    box-shadow: 0 20px 50px -18px rgba(10, 31, 68, 0.25);
}

/* --- Form testeur : arrondi + ombre plus douce --- */
.lx-landing .lxl-testeur-form,
.lx-landing .lxl-testeur-aside {
    border-radius: 20px;
}
.lx-landing .lxl-form-group input,
.lx-landing .lxl-form-group select,
.lx-landing .lxl-form-group textarea {
    border-radius: 10px;
    background: #fff;
    border-color: rgba(10, 31, 68, 0.12);
}


/* -----------------------------------------------------------------------------
   15. MOTION — scroll progress bar + préparations GSAP
   -----------------------------------------------------------------------------*/

/* Scroll progress bar (top fixed, gold) */
.lxl-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 100%;
    background: var(--lxl-gold, #C9A961);
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.4);
}

/* Price cards : préparer le 3D pour le tilt hover */
.lx-landing .lxl-price-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Hero : wrapper each word inside lxl-hero-title supporting SplitType spans */
.lx-landing .lxl-hero-title .word {
    display: inline-block;
    will-change: transform, opacity, filter;
}

/* Magnetic buttons : will-change pour perf */
.lx-landing .lxl-btn--gold,
.lx-landing .lxl-btn--ink {
    will-change: transform;
}

/* Reduced motion : tout devient instant */
@media (prefers-reduced-motion: reduce) {
    .lxl-scroll-progress { display: none; }
    .lx-landing .lxl-price-card { transform: none !important; }
}

/* -----------------------------------------------------------------------------
   16. AJUSTEMENTS — H1 3 lignes max, subtitle 2 lignes max, navbar transparente
   -----------------------------------------------------------------------------*/

/* H1 : on garde la TAILLE d'origine (--lxl-h1 = clamp jusqu'à 5.25rem),
   on ajuste juste le container pour que le texte court tienne en 3 lignes. */
.lx-landing .lxl-hero-title {
    /* taille calée pour que chaque ligne forcée par <br class="lxl-br-desktop">
       tienne sans re-wrap sur desktop. */
    font-size: clamp(2.25rem, 3vw + 1.25rem, 4.5rem) !important;
    max-width: min(1200px, 94vw) !important;
    margin: 0 auto 1.75rem;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

/* Desktop : on applique les breaks explicites → 3 lignes garanties.
   Mobile (<720px) : on masque les <br> et le texte wrappe naturellement. */
.lx-landing .lxl-br-desktop { display: inline; }
@media (max-width: 720px) {
    .lx-landing .lxl-br-desktop { display: none; }
    .lx-landing .lxl-hero-title { text-wrap: balance; }
}

/* Subtitle : container ~560px pour tenir en 2 lignes larges. */
.lx-landing .lxl-hero-subtitle {
    max-width: 620px !important;
    text-wrap: balance;
    line-height: 1.55;
}

/* Clearance : le navbar est en position:sticky par-dessus ; on pousse le hero
   pour que le pill ne passe pas sous le navbar. */
body:has(.lx-landing) .lxl-hero {
    padding-top: clamp(3rem, 6vh, 5rem);
}

/* Masquer le footer global du layout master sur la landing (on garde lxl-footer). */
body:has(.lx-landing) .lx-footer-full,
body:has(.lx-landing) .lx-footer-mini {
    display: none !important;
}

/* ----------------------------------------------------------------------------
   Navbar transparente sur la landing (body contient .lx-landing), glass au
   scroll. Utilise :has() (Chrome 105+ / Safari 15.4+ / FF 121+).
   La règle CSS est scopée pour ne pas affecter dashboard / autres pages.
   ---------------------------------------------------------------------------*/
body:has(.lx-landing) .lx-navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease, box-shadow 280ms ease;
}
body:has(.lx-landing) .lx-navbar.is-scrolled {
    background: rgba(253, 252, 250, 0.88) !important;
    backdrop-filter: saturate(180%) blur(14px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(14px) !important;
    border-bottom-color: rgba(10, 31, 68, 0.08) !important;
    box-shadow: 0 2px 20px -10px rgba(10, 31, 68, 0.1) !important;
}

/* ----------------------------------------------------------------------------
   CTA header "Créer un compte" : même style que les CTAs du hero
   (pill navy profond, identique à .lxl-btn--ink).
   ---------------------------------------------------------------------------*/
body:has(.lx-landing) .lx-navbar .lx-btn-primary {
    background: var(--lxl-navy, #0A1F44) !important;
    color: #FDFCFA !important;
    border: 1px solid var(--lxl-navy, #0A1F44) !important;
    border-radius: 999px !important;
    padding: 0.55rem 1.15rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.005em !important;
    box-shadow: 0 6px 18px -8px rgba(10, 31, 68, 0.35) !important;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease !important;
}
body:has(.lx-landing) .lx-navbar .lx-btn-primary:hover {
    background: #06122A !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -10px rgba(10, 31, 68, 0.5) !important;
}
body:has(.lx-landing) .lx-navbar .lx-btn-ghost {
    border-radius: 999px !important;
    padding: 0.55rem 1rem !important;
    color: var(--lxl-navy, #0A1F44) !important;
    font-weight: 500 !important;
}
body:has(.lx-landing) .lx-navbar .lx-btn-ghost:hover {
    background: rgba(10, 31, 68, 0.06) !important;
}

/* Hero : décoller légèrement le pill du haut puisque le header est par-dessus */
body:has(.lx-landing) .lx-main { padding-top: 0; }

/* ============================================================================
   17. SECTIONS LANDING COMMERCIALE V2 (Avril 2026)
   ============================================================================
   Hero générique + bandeau Testeur compact + features + how-it-works
   + témoignages + FAQ + CTA double.
   Tokens : --lxl-navy, --lxl-gold, --lxl-ivory, --lxl-text-muted
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Section header générique (eyebrow + h2 + subtitle)
   ---------------------------------------------------------------------------*/
.lx-landing .lxl-section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lxl-gold, #C9A961);
    margin-bottom: 1rem;
}
.lx-landing .lxl-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}
.lx-landing .lxl-section-header h2 {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: clamp(1.875rem, 1.5vw + 1.25rem, 2.75rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--lxl-navy, #0A1F44);
    margin: 0 0 1rem;
    text-wrap: balance;
}
.lx-landing .lxl-section-subtitle {
    font-size: 1.075rem;
    line-height: 1.6;
    color: var(--lxl-text-muted, #4a5568);
    text-wrap: balance;
    margin: 0;
}
.lx-landing .lxl-container--narrow {
    max-width: 820px;
}

/* ----------------------------------------------------------------------------
   §3 Bandeau Testeur compact (scarcity discret)
   ---------------------------------------------------------------------------*/
.lxl-testeur-banner {
    background: linear-gradient(135deg,
        rgba(201, 169, 97, 0.08) 0%,
        rgba(201, 169, 97, 0.16) 100%);
    border-top: 1px solid rgba(201, 169, 97, 0.22);
    border-bottom: 1px solid rgba(201, 169, 97, 0.22);
    padding: 1.25rem 0;
}
.lxl-testeur-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.lxl-testeur-banner-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}
.lxl-testeur-banner-content {
    flex: 1 1 280px;
    min-width: 0;
}
.lxl-testeur-banner-title {
    font-weight: 700;
    color: var(--lxl-navy, #0A1F44);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.lxl-testeur-banner-tag {
    font-size: 0.7rem;
    background: var(--lxl-navy, #0A1F44);
    color: var(--lxl-ivory, #F5F2EA);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.lxl-testeur-banner-pitch {
    font-size: 0.92rem;
    color: var(--lxl-text-muted, #4a5568);
    line-height: 1.45;
}
.lxl-testeur-banner-pitch strong {
    color: var(--lxl-navy, #0A1F44);
}
.lxl-testeur-banner-meter {
    flex: 0 0 200px;
    min-width: 160px;
}
.lxl-testeur-banner-meter-bar {
    height: 6px;
    background: rgba(10, 31, 68, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.lxl-testeur-banner-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lxl-gold, #C9A961), #d8b878);
    border-radius: 999px;
    transition: width 600ms cubic-bezier(.2,.8,.2,1);
}
.lxl-testeur-banner-meter-label {
    font-size: 0.78rem;
    color: var(--lxl-text-muted, #4a5568);
    text-align: right;
}
.lxl-testeur-banner-meter-label strong {
    color: var(--lxl-navy, #0A1F44);
    font-weight: 700;
}
.lxl-testeur-banner-cta {
    flex-shrink: 0;
}
@media (max-width: 720px) {
    .lxl-testeur-banner-inner { gap: 0.75rem; }
    .lxl-testeur-banner-meter { flex-basis: 100%; order: 99; }
    .lxl-testeur-banner-cta { width: 100%; justify-content: center; }
}

/* ----------------------------------------------------------------------------
   §4 Features grid (6 cards)
   ---------------------------------------------------------------------------*/
.lxl-features {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: var(--lxl-ivory, #FDFCFA);
}
.lxl-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.lxl-feature-card {
    background: #fff;
    border: 1px solid rgba(10, 31, 68, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.lxl-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 18px 36px -22px rgba(10, 31, 68, 0.18);
}
.lxl-feature-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
}
.lxl-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lxl-navy, #0A1F44);
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}
.lxl-feature-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--lxl-text-muted, #4a5568);
    margin: 0;
}

/* ----------------------------------------------------------------------------
   §5 How it works — 3 steps avec connecteur visuel
   ---------------------------------------------------------------------------*/
.lxl-how {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: #fff;
}
.lxl-how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    counter-reset: how-step;
    position: relative;
}
.lxl-how-step {
    position: relative;
    padding: 0;
}
.lxl-how-step-num {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--lxl-gold, #C9A961);
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.lxl-how-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lxl-navy, #0A1F44);
    margin: 0 0 0.5rem;
}
.lxl-how-step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--lxl-text-muted, #4a5568);
    margin: 0 0 0.75rem;
}
.lxl-how-step-time {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lxl-navy, #0A1F44);
    background: rgba(10, 31, 68, 0.06);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

/* ----------------------------------------------------------------------------
   §8 Testimonials
   ---------------------------------------------------------------------------*/
.lxl-testimonials {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: var(--lxl-ivory, #FDFCFA);
}
.lxl-testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.lxl-testi-card {
    margin: 0;
    background: #fff;
    border: 1px solid rgba(10, 31, 68, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.lxl-testi-quote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--lxl-navy, #0A1F44);
    font-style: italic;
    flex: 1;
}
.lxl-testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 31, 68, 0.06);
}
.lxl-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lxl-navy, #0A1F44), #1a3a6f);
    color: var(--lxl-ivory, #F5F2EA);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.lxl-testi-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 0.85rem;
}
.lxl-testi-meta strong {
    color: var(--lxl-navy, #0A1F44);
    font-weight: 700;
    margin-bottom: 0.1rem;
}
.lxl-testi-meta span {
    color: var(--lxl-text-muted, #4a5568);
    font-size: 0.78rem;
}

/* ----------------------------------------------------------------------------
   §9 FAQ — accordion natif <details>
   ---------------------------------------------------------------------------*/
.lxl-faq {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: #fff;
}
.lxl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.lxl-faq-item {
    background: var(--lxl-ivory, #FDFCFA);
    border: 1px solid rgba(10, 31, 68, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.lxl-faq-item[open] {
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 12px 28px -18px rgba(10, 31, 68, 0.18);
}
.lxl-faq-question {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: var(--lxl-navy, #0A1F44);
    font-size: 1rem;
    transition: color 200ms ease;
}
.lxl-faq-question::-webkit-details-marker { display: none; }
.lxl-faq-question:hover { color: var(--lxl-gold, #C9A961); }
.lxl-faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(10, 31, 68, 0.06);
    color: var(--lxl-navy, #0A1F44);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 250ms cubic-bezier(.2,.8,.2,1), background 200ms ease;
}
.lxl-faq-item[open] .lxl-faq-chevron {
    transform: rotate(45deg);
    background: var(--lxl-gold, #C9A961);
    color: var(--lxl-ivory, #F5F2EA);
}
.lxl-faq-answer {
    padding: 0 1.4rem 1.4rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--lxl-text-muted, #4a5568);
}

/* ----------------------------------------------------------------------------
   §10 Final CTA — double bouton
   ---------------------------------------------------------------------------*/
.lx-landing .lxl-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}
.lx-landing .lxl-btn--ghost-light {
    background: transparent;
    color: var(--lxl-ivory, #F5F2EA);
    border: 1.5px solid rgba(245, 242, 234, 0.4);
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.lx-landing .lxl-btn--ghost-light:hover {
    background: rgba(245, 242, 234, 0.08);
    border-color: rgba(245, 242, 234, 0.7);
    transform: translateY(-1px);
}

/* Bouton small (utilisé sur le bandeau Testeur) */
.lx-landing .lxl-btn--sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.875rem;
}

/* ============================================================================
   18. AJUSTEMENTS V2 (Avril 2026 — itération 2)
   ============================================================================ */

/* ----------------------------------------------------------------------------
   18.1 Navbar : menu CENTRÉ entre logo (gauche) et actions (droite)
   ---------------------------------------------------------------------------*/
body:has(.lx-landing) .lx-navbar-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
body:has(.lx-landing) .lx-navbar-brand {
    grid-column: 1;
    justify-self: start;
}
body:has(.lx-landing) .lx-navbar-inner > nav {
    grid-column: 2;
    justify-self: center;
}
body:has(.lx-landing) .lx-navbar-spacer {
    display: none !important; /* plus utile en grid */
}
body:has(.lx-landing) .lx-navbar-actions {
    grid-column: 3;
    justify-self: end;
}

/* ----------------------------------------------------------------------------
   18.2 Header transparent sur hero — renforce la spécificité
   (le toggle is-scrolled est géré par JS dans welcome.blade.php)
   ---------------------------------------------------------------------------*/
body:has(.lx-landing) header.lx-navbar:not(.is-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}
body:has(.lx-landing) header.lx-navbar.is-scrolled {
    background: rgba(253, 252, 250, 0.92) !important;
    backdrop-filter: saturate(180%) blur(14px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(14px) !important;
    border-bottom-color: rgba(10, 31, 68, 0.08) !important;
    box-shadow: 0 2px 20px -10px rgba(10, 31, 68, 0.12) !important;
}

/* ----------------------------------------------------------------------------
   18.3 Bandeau Testeur : mode FIXED-BOTTOM révélé au scroll
   ---------------------------------------------------------------------------*/
.lxl-testeur-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(253, 252, 250, 0.96);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid rgba(201, 169, 97, 0.35);
    border-bottom: none;
    box-shadow: 0 -8px 32px -12px rgba(10, 31, 68, 0.18);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 350ms cubic-bezier(.2,.8,.2,1), opacity 250ms ease;
    padding: 0.85rem 0;
}
.lxl-testeur-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.lxl-testeur-banner.is-dismissed {
    display: none;
}
.lxl-testeur-banner-dismiss {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--lxl-text-muted, #4a5568);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 50%;
    transition: background 150ms ease, color 150ms ease;
}
.lxl-testeur-banner-dismiss:hover {
    background: rgba(10, 31, 68, 0.08);
    color: var(--lxl-navy, #0A1F44);
}
@media (max-width: 720px) {
    .lxl-testeur-banner-pitch { font-size: 0.85rem; }
    .lxl-testeur-banner { padding: 0.65rem 0; }
}

/* Logos cliquables : hover state */
.lx-landing .lxl-logo-link {
    text-decoration: none;
    cursor: pointer;
    transition: transform 200ms ease, color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.lx-landing .lxl-logo-link:hover {
    transform: translateY(-2px);
    color: var(--lxl-navy, #0A1F44);
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.08);
}
.lx-landing .lxl-logo-link:hover .lxl-logo-placeholder-mark {
    background: var(--lxl-gold, #C9A961);
    color: var(--lxl-navy, #0A1F44);
}
