/* ============================================================
   HireKazi — Landing Page CSS (v2)
   ============================================================ */

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

:root {
    --l-dark:          #0f263d;
    --l-dark-2:        #07213b;
    --l-primary:       #003A60;
    --l-primary-light: #1E77B8;
    --l-accent:        #00C16E;
    --l-accent-light:  #2ECC71;
    --l-gold:          #F39C12;
    --l-white:         #FFFFFF;
    --l-gray-100:      #F0F4F8;
    --l-gray-200:      #E2E8EF;
    --l-gray-400:      #94A6B8;
    --l-gray-600:      #5A7085;
    --l-text-dark:     #0F1F2D;
    --l-text-muted:    #637D93;
    --l-font-display:  'Poppins', sans-serif;
    --l-font-body:     'Inter', sans-serif;
    --l-section:       104px;
    --l-ease:          cubic-bezier(.4, 0, .2, 1);
    --l-space-6:       24px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--l-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--l-text-dark);
    background: var(--l-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Container ── */
.l-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.l-container--narrow { max-width: 800px; }

/* ── Tag / Badge ── */
.l-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(39,174,96,.1);
    color: var(--l-accent-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(39,174,96,.2);
}
.l-tag--gold  { background: rgba(243,156,18,.1); color: var(--l-gold); border-color: rgba(243,156,18,.2); }
.l-tag--dark  { background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.12); }

/* ── Boutons ── */
.l-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: var(--l-font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s var(--l-ease);
    text-decoration: none;
    white-space: nowrap;
}
.l-btn--primary {
    background: var(--l-accent);
    color: var(--l-white);
    border-color: var(--l-accent);
}
.l-btn--primary:hover {
    background: #219a52;
    border-color: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39,174,96,.35);
}
.l-btn--outline {
    background: transparent;
    color: var(--l-white);
    border-color: rgba(255,255,255,.3);
}
.l-btn--outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}
.l-btn--lg  { padding: 15px 32px; font-size: 16px; }
.l-btn--xl  { padding: 17px 36px; font-size: 17px; border-radius: 12px; }

/* ═══════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.l-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all .3s var(--l-ease);
}
.l-nav.scrolled {
    background: rgba(11,25,41,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.l-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.l-nav__logo {
    font-family: var(--l-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--l-white);
    letter-spacing: -.02em;
    flex-shrink: 0;
}
.l-nav__logo span { color: var(--l-accent); }
.l-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.l-nav__link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .15s;
}
.l-nav__link:hover { color: var(--l-white); background: rgba(255,255,255,.06); }
.l-nav__cta {
    background: var(--l-accent);
    color: var(--l-white) !important;
    border-radius: 8px;
    font-weight: 600;
    padding: 9px 18px;
}
.l-nav__cta:hover { background: #219a52; transform: translateY(-1px); }

/* Bouton dashboard (connecté) */
.l-nav__dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--l-accent);
    color: white;
    padding: 8px 18px 8px 8px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap;
}
.l-nav__dashboard-btn:hover { background: #219a52; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(39,174,96,.3); }
.l-nav__avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.4);
}

/* Burger */
.l-nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.l-nav__burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all .2s; }

/* ═══════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.l-hero {
    background: var(--l-dark);
    padding: 160px 32px 100px;
    overflow: hidden;
    position: relative;
}
/* Pattern dot grid */
.l-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
/* Pattern dot grid */
.l-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.l-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 75% 35%, rgba(46,134,193,.3) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 10% 90%, rgba(39,174,96,.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.l-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.l-hero__title {
    font-family: var(--l-font-display);
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--l-white);
    letter-spacing: -.03em;
    margin-bottom: 24px;
}
.l-hero__title em { font-style: normal; color: var(--l-accent); }
.l-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.62);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 500px;
}
.l-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.l-hero__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.38);
    margin-bottom: 28px;
}
.l-hero__trust i { font-size: 18px; color: var(--l-accent); }

/* Badges paiement */
.l-hero__payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.l-payment-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
}
.l-payment-badge--wave   { background: rgba(0,188,212,.12); color: #00BCD4; border: 1px solid rgba(0,188,212,.2); }
.l-payment-badge--orange { background: rgba(255,152,0,.12); color: #FF9800; border: 1px solid rgba(255,152,0,.2); }
.l-payment-badge--free   { background: rgba(156,39,176,.12); color: #CE93D8; border: 1px solid rgba(156,39,176,.2); }

/* Mockup */
.l-hero__mockup {
    background: #07213b;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.04),
        inset 0 1px 0 rgba(255,255,255,.05);
}
.l-mockup__bar {
    background: rgba(0,0,0,.25);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.l-mockup__dot { width: 11px; height: 11px; border-radius: 50%; }
.l-mockup__dot--red    { background: #FF5F57; }
.l-mockup__dot--yellow { background: #FEBC2E; }
.l-mockup__dot--green  { background: #28C840; }
.l-mockup__bar-label {
    margin-left: 10px;
    font-size: 11px;
    color: rgba(255,255,255,.2);
    font-family: var(--l-font-body);
}
.l-mockup__content { padding: 22px; }
.l-mockup__title {
    font-size: 10px;
    color: rgba(255,255,255,.3);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.l-mockup__stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.l-mockup__stat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 14px 12px;
}
.l-mockup__stat-value {
    font-family: var(--l-font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--l-white);
    line-height: 1;
    margin-bottom: 5px;
}
.l-mockup__stat-label { font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .06em; }
.l-mockup__candidate {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    transition: background .15s;
}
.l-mockup__candidate:hover { background: rgba(255,255,255,.06); }
.l-mockup__avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}
.l-color-white { color: white; }
.l-mockup__name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.l-mockup__role { font-size: 11px; color: rgba(255,255,255,.3); }
.l-mockup__score {
    margin-left: auto;
    font-family: var(--l-font-display);
    font-size: 17px;
    font-weight: 800;
}
.l-mockup__wa-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(39,174,96,.1);
    border: 1px solid rgba(39,174,96,.2);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--l-accent-light);
    font-weight: 500;
}
.l-mockup__wa-alert i { font-size: 16px; }

/* ═══════════════════════════════════════════════════
   PROBLÈME → SOLUTION
════════════════════════════════════════════════════ */
.l-pain {
    background: var(--l-gray-100);
    padding: 72px 32px;
    border-top: 1px solid var(--l-gray-200);
    border-bottom: 1px solid var(--l-gray-200);
    position: relative;
}
/* Crosshatch très subtil */
.l-pain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,58,96,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,58,96,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.l-pain > * { position: relative; z-index: 1; }
/* Crosshatch très subtil */
.l-pain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,58,96,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,58,96,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.l-pain > * { position: relative; z-index: 1; }
.l-pain__grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}
.l-pain__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.l-pain__badge--red   { background: #FEE2E2; color: #C0392B; }
.l-pain__badge--green { background: #D5F5E3; color: #1A7940; }

.l-pain__list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.l-pain__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--l-text-dark);
}
.l-pain__col--before .l-pain__list li { color: var(--l-gray-600); }
.l-pain__col--before .l-pain__list li i { color: #E74C3C; font-size: 16px; }
.l-pain__col--after  .l-pain__list li i { color: var(--l-accent); font-size: 16px; }

.l-pain__divider {
    display: flex;
    align-items: center;
    justify-content: center;
}
.l-pain__arrow {
    width: 48px; height: 48px;
    background: var(--l-accent);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(39,174,96,.35);
}

/* ═══════════════════════════════════════════════════
   SECTION GÉNÉRIQUE
════════════════════════════════════════════════════ */
.l-section { padding: var(--l-section) 32px; }
.l-section--alt {
    background: var(--l-gray-100);
    position: relative;
}
.l-section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,58,96,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.l-section--alt > * { position: relative; z-index: 1; }
.l-section--dark {
    background: var(--l-dark);
    color: var(--l-white);
    position: relative;
}
.l-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,.018) 40px,
        rgba(255,255,255,.018) 41px
    );
    pointer-events: none;
}
.l-section--dark > * { position: relative; z-index: 1; }

.l-section--dark-2 {
    background: var(--l-dark-2);
    color: var(--l-white);
    position: relative;
}
.l-section--dark-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}
.l-section--dark-2 > * { position: relative; z-index: 1; }

/* Séparateur automatique entre deux sections sombres qui se suivent.
   Ne s'active QUE si « Tarifs » (--dark-2) suit directement « Comment ça
   marche » (--dark) — c'est-à-dire quand les témoignages ET les offres sont
   masqués (lancement). Dès qu'une section claire revient s'intercaler, le
   sélecteur + ne correspond plus et le séparateur disparaît de lui-même.
   Aucune intervention à prévoir quand le contenu se remplit. */
.l-section--dark + .l-section--dark-2 {
    border-top: 1px solid rgba(255, 255, 255, .07);
}
.l-section--dark + .l-section--dark-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(640px, 78%);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, .55), transparent);
    pointer-events: none;
    z-index: 2;
}

.l-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}
.l-section__eyebrow { margin-bottom: 18px; }
.l-section__title {
    font-family: var(--l-font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
    color: var(--l-text-dark);
    margin-bottom: 16px;
}
.l-section__title--light { color: var(--l-white); }
.l-section__subtitle { font-size: 17px; color: var(--l-text-muted); line-height: 1.75; }
.l-section__subtitle--light { color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════ */
.l-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 60px;
    background: var(--l-gray-100);
    padding: 6px;
    border-radius: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.l-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 10px;
    font-family: var(--l-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--l-gray-600);
    background: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
}
.l-tab:hover { color: var(--l-primary); }
.l-tab.active {
    background: var(--l-white);
    color: var(--l-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.l-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.l-feature-card {
    background: var(--l-white);
    border: 1.5px solid var(--l-gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: all .25s var(--l-ease);
}
.l-feature-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-4px);
}
.l-feature-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}
.l-feature-card__icon--blue  { background: rgba(0,58,96,.1); color: var(--l-primary); }
.l-feature-card__icon--green { background: rgba(39,174,96,.1); color: var(--l-accent); }
.l-feature-card__icon--gold  { background: rgba(243,156,18,.1); color: var(--l-gold); }
.l-feature-card__title {
    font-family: var(--l-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--l-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.l-feature-card__desc { font-size: 14px; color: var(--l-text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   COMMENT ÇA MARCHE
════════════════════════════════════════════════════ */
.l-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-bottom: 56px;
}
.l-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 1px;
    background: linear-gradient(90deg, rgba(39,174,96,.5), rgba(46,134,193,.5));
}
.l-step {
    text-align: center;
    position: relative;
}
.l-step__icon {
    width: 64px; height: 64px;
    background: rgba(39,174,96,.1);
    border: 2px solid rgba(39,174,96,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    font-size: 24px;
    color: var(--l-accent-light);
    position: relative;
    z-index: 1;
    background: var(--l-dark);
}
.l-step__num {
    display: inline-block;
    font-family: var(--l-font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--l-accent);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.l-step__title {
    font-family: var(--l-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--l-white);
    margin-bottom: 12px;
}
.l-step__desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
.l-steps__cta { text-align: center; }

/* ═══════════════════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════════════════════ */
.l-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.l-testimonial {
    background: var(--l-white);
    border: 1.5px solid var(--l-gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: all .25s;
}
.l-testimonial:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.l-testimonial__stars { font-size: 15px; margin-bottom: 14px; }
.l-testimonial__quote {
    font-size: 15px;
    color: var(--l-text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.l-testimonial__author { display: flex; align-items: center; gap: 12px; }
.l-testimonial__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.l-testimonial__name  { font-size: 14px; font-weight: 700; color: var(--l-text-dark); }
.l-testimonial__title { font-size: 12px; color: var(--l-text-muted); }

/* ═══════════════════════════════════════════════════
   TARIFS
════════════════════════════════════════════════════ */
.l-plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 0 auto 32px;
}
.l-plan-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 32px;
    transition: all .25s;
}
.l-plan-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.l-plan-card--featured {
    background: var(--l-accent);
    border-color: var(--l-accent);
    box-shadow: 0 24px 60px rgba(39,174,96,.4);
    /* Pas de transform scale — casse le grid 4 colonnes */
}
.l-plan-card--featured:hover { transform: translateY(-4px); }
.l-plan-card__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
}
.l-plan-card__name {
    font-family: var(--l-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--l-white);
    margin-bottom: 8px;
}
.l-plan-card__price {
    font-family: var(--l-font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--l-white);
    line-height: 1;
    margin-bottom: 6px;
}
.l-plan-card__price-unit { font-size: 1rem; font-weight: 400; opacity: .6; }
.l-plan-card__period { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.l-plan-card__features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.l-plan-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.82);
}
.l-plan-card__feature i { flex-shrink: 0; color: var(--l-accent-light); margin-top: 2px; font-size: 14px; }
.l-plan-card--featured .l-plan-card__feature i { color: white; }
.l-plans__secure {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.l-faq { display: flex; flex-direction: column; gap: 12px; }
.l-faq__item {
    border: 1.5px solid var(--l-gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}
.l-faq__item.open { border-color: var(--l-primary); }
.l-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--l-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--l-text-dark);
    text-align: left;
}
.l-faq__question:hover { background: var(--l-gray-100); }
.l-faq__icon { flex-shrink: 0; font-size: 18px; color: var(--l-primary); transition: transform .2s; }
.l-faq__item.open .l-faq__icon { transform: rotate(45deg); }
.l-faq__answer { max-height: 0; overflow: hidden; transition: max-height .3s var(--l-ease); }
.l-faq__answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--l-text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════ */
.l-cta-final {
    background: var(--l-dark);
    padding: var(--l-section) 32px;
    position: relative;
    overflow: hidden;
}
/* Cercles concentriques */
.l-cta-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background:
        radial-gradient(circle, transparent 29%, rgba(39,174,96,.06) 30%, transparent 31%),
        radial-gradient(circle, transparent 49%, rgba(39,174,96,.05) 50%, transparent 51%),
        radial-gradient(circle, transparent 69%, rgba(39,174,96,.04) 70%, transparent 71%),
        radial-gradient(circle, transparent 89%, rgba(39,174,96,.03) 90%, transparent 91%);
    pointer-events: none;
    z-index: 0;
}
/* Cercles concentriques */
.l-cta-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background:
        radial-gradient(circle, transparent 29%, rgba(39,174,96,.06) 30%, transparent 31%),
        radial-gradient(circle, transparent 49%, rgba(39,174,96,.05) 50%, transparent 51%),
        radial-gradient(circle, transparent 69%, rgba(39,174,96,.04) 70%, transparent 71%),
        radial-gradient(circle, transparent 89%, rgba(39,174,96,.03) 90%, transparent 91%);
    pointer-events: none;
    z-index: 0;
}
.l-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(39,174,96,.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.l-cta-final__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.l-cta-final__badge {
    display: inline-block;
    background: rgba(39,174,96,.12);
    color: var(--l-accent-light);
    border: 1px solid rgba(39,174,96,.2);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}
.l-cta-final__title {
    font-family: var(--l-font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--l-white);
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.l-cta-final__sub {
    font-size: 17px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 40px;
}
.l-cta-final__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.l-cta-final__note {
    font-size: 13px;
    color: rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.l-footer {
    background: #060E18;
    color: rgba(255,255,255,.6);
    padding: 64px 32px 32px;
}
.l-footer__top {
    max-width: 1280px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}
.l-footer__logo {
    font-family: var(--l-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--l-white);
    margin-bottom: 12px;
}
.l-footer__logo span { color: var(--l-accent); }
.l-footer__desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.l-footer__socials { display: flex; gap: 10px; }
.l-footer__socials a {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,.5);
    transition: all .15s;
}
.l-footer__socials a:hover { background: rgba(255,255,255,.12); color: var(--l-white); }
.l-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}
.l-footer__link {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    padding: 5px 0;
    transition: color .15s;
}
.l-footer__link:hover { color: var(--l-white); }
.l-footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
    font-size: 13px;
    text-align: center;
    color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════════════
   DASHBOARD BTN (état connecté)
════════════════════════════════════════════════════ */
.l-plan-card__price-unit { font-size: 1rem; font-weight: 400; opacity: .6; }
.l-footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .l-features__grid  { grid-template-columns: repeat(2, 1fr); }
    .l-testimonials    { grid-template-columns: repeat(2, 1fr); }
    .l-footer__top     { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
    .l-hero          { padding: 130px 24px 72px; }
    .l-hero__inner   { grid-template-columns: 1fr; gap: 48px; }
    .l-hero__mockup  { max-width: 500px; margin: 0 auto; }
    .l-hero__subtitle { max-width: 100%; }
    .l-steps         { grid-template-columns: 1fr; gap: 32px; }
    .l-steps::before { display: none; }
    .l-pain__grid    { grid-template-columns: 1fr; }
    .l-pain__divider { transform: rotate(90deg); }
}
@media (max-width: 700px) {
    .l-container     { padding: 0 20px; }
    .l-features__grid{ grid-template-columns: 1fr; }
    .l-testimonials  { grid-template-columns: 1fr; }
    .l-footer__top   { grid-template-columns: 1fr; }
    .l-nav__links    { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(11,25,41,.98); flex-direction: column; padding: 24px; gap: 4px; border-top: 1px solid rgba(255,255,255,.08); }
    .l-nav__links.open { display: flex; }
    .l-nav__burger   { display: flex; }
    .l-hero__ctas    { flex-direction: column; }
    .l-cta-final__btns { flex-direction: column; align-items: center; }
}

/* ─────────────────────────────────────────────
   PLANS — Toggle période (landing)
   ───────────────────────────────────────────── */
.l-period-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 6px;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto 40px;
}
.l-period-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: 100px;
    font-family: var(--l-font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.5);
    transition: all .2s;
    white-space: nowrap;
}
.l-period-btn:hover { color: rgba(255,255,255,.85); }
.l-period-btn.active {
    background: white;
    color: var(--l-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.l-period-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 100px;
    background: var(--l-accent);
    color: white;
    letter-spacing: .04em;
}
.l-period-btn.active .l-period-badge {
    background: var(--l-accent);
    color: white;
}

/* Message économie */
.l-period-msg {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--l-accent-light);
    background: rgba(39,174,96,.1);
    border: 1px solid rgba(39,174,96,.2);
    padding: 10px 24px;
    border-radius: 100px;
    width: fit-content;
    margin: -20px auto 32px;
}

/* Blocs prix dynamiques */
.l-price-block--hidden { display: none; }

/* Badge économie dans card */
.l-save-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(39,174,96,.15);
    color: var(--l-accent-light);
    margin-top: 6px;
    margin-bottom: 4px;
}
.l-plan-card--featured .l-save-badge {
    background: rgba(255,255,255,.2);
    color: white;
}

/* ── Offre de lancement (bloc tarifs) ─────────── */
.l-launch-box {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(39,174,96,.12) 0%, rgba(243,156,18,.10) 100%);
    border: 1.5px solid rgba(39,174,96,.35);
    border-radius: 18px;
    padding: 28px 32px;
    margin: 0 auto 20px;
    max-width: 960px;
}

.l-launch-box__main { flex: 1 1 380px; }

.l-launch-box__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--l-font-title, inherit);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.l-launch-box__title i { color: var(--l-accent-light); font-size: 22px; }

.l-launch-box__text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,.78);
    margin-bottom: 8px;
}

.l-launch-box__text strong { color: #FFFFFF; }

.l-launch-box__side {
    flex: 0 0 auto;
    text-align: center;
    min-width: 180px;
}

.l-launch-box__count {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: var(--l-gold);
}

.l-launch-box__count-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.55);
    margin: 6px 0 16px;
    line-height: 1.3;
}

.l-launch-box__cta { justify-content: center; width: 100%; }

.l-launch-note {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* Prix catalogue barré pendant le lancement */
.l-price-strike {
    font-size: 15px;
    color: rgba(255,255,255,.38);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.l-founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* Doit tenir sur UNE ligne dans une carte étroite (grille 4 colonnes) :
       texte court + nowrap + police réduite. Sur mobile la grille passe à
       1 colonne, la largeur n'est plus contrainte. */
    white-space: nowrap;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: -.1px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(243,156,18,.16);
    color: var(--l-gold);
    margin-bottom: 6px;
}

.l-founder-badge i { font-size: 11px; flex-shrink: 0; }

.l-plan-card--featured .l-founder-badge {
    background: rgba(255,255,255,.2);
    color: white;
}

.l-plan-card__launch-note {
    font-size: 11.5px;
    color: rgba(255,255,255,.45);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .l-launch-box { padding: 22px 20px; gap: 20px; }
    .l-launch-box__side { min-width: 100%; }
    .l-launch-box__count { font-size: 42px; }

    /* Toggle période : pleine largeur, boutons équirépartis (évite le débordement horizontal) */
    .l-period-toggle {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 4px;
        padding: 5px;
    }
    .l-period-btn {
        flex: 1 1 0;
        justify-content: center;
        padding: 10px 6px;
        font-size: 13px;
        gap: 4px;
    }
    .l-period-badge { font-size: 9px; padding: 2px 5px; }
}



/* ── l-section--light ────────────────────────── */
.l-section--light {
    background: #F5F7FA;
}
.l-section--light .l-section__eyebrow { color: #00C16E; }
.l-section--light .l-section__title   { color: #0f263d; }
.l-section--light .l-section__desc    { color: #5A7085; }

/* ── Section offres landing ─────────────────── */
/* ── Offres emploi grid ─────────────────────── */
.l-offers-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 16px !important;
}
