/* ======================================================
   LOUER UNE SALLE DE SPORT — Landing page coachs
   ====================================================== */

/* ── Helpers ───────────────────────────────────────────── */
.ls_sc {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Material Symbols helper ───────────────────────────── */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-style: normal;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* ── Eyebrow badge ─────────────────────────────────────── */
.ls_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: rgba(197, 90, 54, 0.07);
    border: 1px solid rgba(197, 90, 54, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* ── Section headers ───────────────────────────────────── */
.ls_section_head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ls_h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0;
}

/* ── Buttons ───────────────────────────────────────────── */
.ls_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ls_btn_primary .material-symbols-outlined { font-size: 18px; color: #FFFFFF; }
.ls_btn_primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(197, 90, 54, 0.25);
}

.ls_btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 10px;
    padding: 13px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.ls_btn_secondary .material-symbols-outlined { font-size: 18px;  color: var(--color-primary); }
.ls_btn_secondary:hover {
    background: rgba(197, 90, 54, 0.04);
    border-color: var(--color-primary-hover);
}

.ls_btn_ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 13px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.ls_btn_ghost .material-symbols-outlined { font-size: 18px;  color: #fff;}
.ls_btn_ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.ls_ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════
   HEADER (identique index.php)
   ════════════════════════════════════════════════════════ */
header {
    position: sticky;
    width: calc(100% - 200px);
    left: 0;
    top: 0;
    padding: 1em 100px;
    text-align: center;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}
.blcheader { display: flex; justify-content: space-between; align-items: center; }
.center_header { display: flex; justify-content: center; align-items: center; gap: 5px; }
.blc_header_btn { display: flex; justify-content: space-between; gap: 8px; }
.gotospaceheader, .gotocontactheader {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 15px; background: transparent; border: none; font-weight: 500;
    padding: 6px 16px; border-radius: 5px; cursor: pointer; transition: all 0.3s ease;
}
.gotospaceheader:hover, .gotocontactheader:hover { background-color: rgba(150,150,150,0.1); }
.gotospaceheader p, .gotocontactheader p { color: #111; font-size: 15px; font-weight: 600; }
header #titleco {
    display: block; margin: auto; text-align: center;
    font-weight: 800; font-size: 28px; color: #000;
    font-family: var(--font-family-logo);
    letter-spacing: -2px; text-transform: uppercase; cursor: pointer;
}
header img { display: block; position: relative; width: 35px; height: 35px; }
#btnSignIn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: relative; background-color: #fff; color: var(--color-orange);
    border-radius: 9999px; border: 2px solid var(--color-orange);
    font-size: 15px; padding: 8px 26px; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
}
#btnSignIn p { font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--color-orange); font-weight: 700; }
#btnSignIn:hover { background-color: var(--color-orange); }
#btnSignIn:hover p { color: #fff; }
#btnSignIn:active { transform: scale(0.95); }
.btn_menu_little { display: none; }
.blc_menu_little { display: none; }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.ls_hero {
    background: #fff;
    padding: 80px 0 72px;
    text-align: center;
}
.ls_hero .ls_sc {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ls_h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 auto 20px;
    max-width: 720px;
}
.ls_subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
}
.ls_hero .ls_ctas { justify-content: center; margin-bottom: 40px; }

/* Trust strip */
.ls_trust_strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.ls_trust_strip span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
}
.ls_trust_strip .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-style: normal;
    line-height: 1;
    font-size: 15px;
    color: var(--color-primary);
}
.ls_sep {
    color: var(--color-border-strong) !important;
    font-weight: 400 !important;
}

/* ════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE — Steps
   ════════════════════════════════════════════════════════ */
.ls_steps {
    padding: 80px 0;
    background: var(--color-surface-alt);
}

.ls_steps_list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
}

.ls_step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.ls_step_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
}

.ls_step_num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ls_step_line {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: linear-gradient(to bottom, var(--color-primary), rgba(197, 90, 54, 0.15));
    margin: 6px 0;
}

.ls_step_right {
    padding-bottom: 48px;
    flex: 1;
}
.ls_step--last .ls_step_right { padding-bottom: 0; }

.ls_step_ico_wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(197, 90, 54, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ls_step_ico_wrap .material-symbols-outlined {
    font-size: 22px;
    color: var(--color-primary);
}

.ls_step_title {
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}
.ls_step_copy {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}
.ls_step_copy strong { color: #111; font-weight: 600; }

.ls_proof_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: rgba(197, 90, 54, 0.07);
    border: 1px solid rgba(197, 90, 54, 0.15);
    padding: 5px 12px;
    border-radius: 50px;
}
.ls_proof_badge .material-symbols-outlined { font-size: 14px; }

/* ════════════════════════════════════════════════════════
   PILIERS
   ════════════════════════════════════════════════════════ */
.ls_pillars {
    padding: 80px 0;
    background: #fff;
}

.ls_pillars_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ls_pillar {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ls_pillar:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.ls_pillar_ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(197, 90, 54, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.ls_pillar_ico .material-symbols-outlined {
    font-size: 26px;
    color: var(--color-primary);
}

.ls_pillar_title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}
.ls_pillar_copy {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════ */
.ls_cta_final {
    padding: 80px 0;
    background: var(--color-surface-alt);
}

.ls_cta_box {
    background: #111;
    border-radius: 24px;
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ls_cta_box::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197,90,54,0.18), transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}
.ls_cta_box::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197,90,54,0.10), transparent 70%);
    bottom: -120px;
    left: -100px;
    pointer-events: none;
}

.ls_cta_h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.ls_cta_sub {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.ls_cta_final .ls_ctas { justify-content: center; }

/* ════════════════════════════════════════════════════════
   CROSS-LINKS
   ════════════════════════════════════════════════════════ */
.ls_crosslinks {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
}

.ls_crosslinks_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ls_crosslink {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}
.ls_crosslink:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(197,90,54,0.08);
}

.ls_crosslink_ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(197, 90, 54, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ls_crosslink_ico .material-symbols-outlined {
    font-size: 22px;
    color: var(--color-primary);
}

.ls_crosslink_label {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}
.ls_crosslink_cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    transition: color 0.2s;
}
.ls_crosslink:hover .ls_crosslink_cta { color: var(--color-primary); }
.ls_crosslink_cta .material-symbols-outlined { font-size: 16px; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ls_h1 { font-size: 32px; }
    .ls_h2 { font-size: 24px; }
    .ls_subtitle { font-size: 15px; }
    .ls_hero { padding: 56px 0 48px; }

    .ls_hero .ls_ctas { flex-direction: column; align-items: stretch; }
    .ls_btn_primary, .ls_btn_secondary { justify-content: center; }

    .ls_trust_strip { gap: 8px 10px; }
    .ls_sep { display: none; }

    .ls_steps { padding: 56px 0; }
    .ls_step_right { padding-bottom: 36px; }
    .ls_step_title { font-size: 17px; }

    .ls_pillars { padding: 56px 0; }
    .ls_pillars_grid { grid-template-columns: 1fr; gap: 12px; }

    .ls_cta_final { padding: 48px 0; }
    .ls_cta_box { padding: 48px 24px; border-radius: 16px; }
    .ls_cta_h2 { font-size: 26px; }
    .ls_cta_final .ls_ctas { flex-direction: column; align-items: stretch; }
    .ls_btn_ghost { justify-content: center; }

    .ls_crosslinks { padding: 40px 0; }
    .ls_crosslinks_grid { grid-template-columns: 1fr; }

    .ls_nav_link { display: none; }
}
