/* ===== LANDING PAGE — PÉRIODES DE RÉCUPÉRATION ===== */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Header minimaliste */
#LPHeader {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 53, 77, 0.08);
    transition: box-shadow 0.3s ease;
}

#LPHeader.scrolled {
    box-shadow: 0 4px 20px rgba(31, 53, 77, 0.1);
}

#LPHeaderInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 5%;
}

.lp-header-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1vw, 15px);
    color: var(--CouleurPrimaire);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.lp-header-contact:hover {
    opacity: 1;
}

.lp-header-contact .material-symbols-outlined {
    font-size: 18px;
    color: var(--CouleurSecondaire);
}

/* ===== HERO ===== */
#LPHero {
    background: linear-gradient(160deg, #f0f7ff 0%, #e8f5f5 50%, #fff8f3 100%);
    padding: 70px 5% 80px;
}

#LPHeroInner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}

#LPHeroText {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
}

#LPHeroVideo {
    flex: 0 0 480px;
    max-width: 480px;
}

#LPVideoWrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(31, 53, 77, 0.18);
}

#LPVideoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#LPHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--CouleurAccent), #ffaa6e);
    color: white;
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    align-self: flex-start;
}

#LPHeroBadge .material-symbols-outlined {
    font-size: 18px;
}

#LPHeroTitle {
    font-family: var(--FontFamily);
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 700;
    color: var(--CouleurPrimaire);
    line-height: 1.1;
}

#LPHeroSubtitle {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.2vw, 18px);
    color: #444;
    line-height: 1.65;
}

#LPHeroSubtitle strong {
    color: var(--CouleurPrimaire);
    font-weight: 600;
}

#LPHeroTags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.lp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1.5px solid rgba(3, 152, 158, 0.25);
    color: var(--CouleurPrimaire);
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(31, 53, 77, 0.06);
}

.lp-tag .material-symbols-outlined {
    font-size: 16px;
    color: var(--CouleurSecondaire);
}

#LPHeroNotice {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.9vw, 14px);
    color: #888;
    margin-top: -8px;
}

/* ===== CTA BOUTON ===== */
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.lp-cta-btn.primary {
    background: linear-gradient(135deg, var(--CouleurAccent), #ff6f1a);
    color: white;
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.4);
}

.lp-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
}

.lp-cta-btn.secondary {
    background: transparent;
    color: var(--CouleurPrimaire);
    border: 2px solid var(--CouleurPrimaire);
}

.lp-cta-btn.secondary:hover {
    background: var(--CouleurPrimaire);
    color: white;
}

.lp-cta-btn .material-symbols-outlined {
    font-size: 20px;
}

/* ===== SECTIONS GÉNÉRIQUES ===== */
.lp-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 5%;
}

.lp-section-alt {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    width: 100%;
    max-width: 100%;
    padding: 80px 5%;
    overflow: hidden;
}

.lp-section-alt > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.lp-section-label {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--CouleurSecondaire);
    margin-bottom: 12px;
}

.lp-section-title {
    font-family: var(--FontFamily);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--CouleurPrimaire);
    line-height: 1.2;
    margin-bottom: 16px;
}

.lp-section-sub {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.2vw, 18px);
    color: #555;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 48px;
}

/* ===== ÉTAPES ===== */
#LPStepsGrid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
    margin-top: 48px;
}

.lp-step {
    flex: 1;
    max-width: 300px;
    background: white;
    border: 1.5px solid rgba(31, 53, 77, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(31, 53, 77, 0.06);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(31, 53, 77, 0.12);
}

.lp-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--CouleurPrimaire);
    color: white;
    font-family: var(--FontFamily);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-step-icon {
    font-size: 40px !important;
    color: var(--CouleurSecondaire);
    display: block;
    margin-bottom: 16px;
}

.lp-step h3 {
    font-family: var(--FontFamily);
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 600;
    color: var(--CouleurPrimaire);
    margin-bottom: 10px;
    line-height: 1.3;
}

.lp-step p {
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1vw, 16px);
    color: #666;
    line-height: 1.6;
}

.lp-step-arrow {
    display: flex;
    align-items: center;
    padding: 0 16px;
    padding-top: 60px;
    color: rgba(31, 53, 77, 0.25);
}

.lp-step-arrow .material-symbols-outlined {
    font-size: 28px;
}

/* ===== POUR QUI C'EST FAIT ===== */
#LPPourQuiGrid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.lp-pourqui-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border: 1.5px solid rgba(31, 53, 77, 0.07);
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(31, 53, 77, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-pourqui-item:hover {
    transform: translateX(6px);
    border-color: rgba(3, 152, 158, 0.3);
}

.lp-pourqui-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(3, 152, 158, 0.12), rgba(3, 152, 158, 0.06));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-pourqui-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--CouleurSecondaire);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.lp-pourqui-content h3 {
    font-family: var(--FontFamily);
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 600;
    color: var(--CouleurPrimaire);
    margin-bottom: 6px;
}

.lp-pourqui-content p {
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1.05vw, 16px);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

#LPPourQuiCTA {
    display: flex;
    justify-content: flex-start;
    margin-top: 36px;
}

/* ===== AVANTAGES ===== */
#LPBenefitsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.lp-benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1.5px solid rgba(31, 53, 77, 0.07);
    box-shadow: 0 2px 12px rgba(31, 53, 77, 0.05);
    transition: transform 0.2s ease;
}

.lp-benefit:hover {
    transform: translateY(-3px);
}

.lp-benefit > .material-symbols-outlined {
    font-size: 32px;
    color: var(--CouleurSecondaire);
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-benefit h3 {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
    color: var(--CouleurPrimaire);
    margin-bottom: 8px;
}

.lp-benefit p {
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1vw, 15px);
    color: #666;
    line-height: 1.6;
}

/* ===== PRIX ===== */
#LPPricingCard {
    background: white;
    border: 2px solid rgba(3, 152, 158, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 680px;
    margin: 48px auto 0;
    text-align: center;
    box-shadow: 0 8px 40px rgba(31, 53, 77, 0.08);
    position: relative;
}

#LPPricingBadge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--CouleurSecondaire), #027f84);
    color: white;
    font-family: var(--FontFamily);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

#LPPricingMain {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.lp-pricing-divider {
    width: 1px;
    height: 80px;
    background: rgba(31, 53, 77, 0.12);
    margin: 0 40px;
}

#LPPricingFirst,
#LPPricingRegular {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.lp-price-label {
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.lp-price-amount {
    font-family: var(--FontFamily);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 700;
    color: var(--CouleurPrimaire);
    line-height: 1;
}

.lp-price-amount.lp-price-free {
    color: var(--CouleurSecondaire);
    font-size: clamp(24px, 2.5vw, 36px);
}

.lp-price-unit {
    font-size: 0.55em;
    font-weight: 500;
    opacity: 0.8;
}

.lp-price-note {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.85vw, 13px);
    color: #aaa;
}

#LPPricingFeatures {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin-bottom: 32px;
    padding: 0;
}

#LPPricingFeatures li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1vw, 15px);
    color: #555;
}

#LPPricingFeatures .material-symbols-outlined {
    font-size: 18px;
    color: var(--CouleurSecondaire);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ===== FORMULAIRE ===== */
#LPFormWrapper {
    background: white;
    border-radius: 28px;
    padding: 56px 48px;
    border: 1.5px solid rgba(31, 53, 77, 0.08);
    box-shadow: 0 8px 48px rgba(31, 53, 77, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

#LPFormHeader {
    margin-bottom: 40px;
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.lp-form-group label {
    font-family: var(--FontFamily);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    color: var(--CouleurPrimaire);
}

.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1.1vw, 16px);
    color: #333;
    padding: 13px 16px;
    border: 1.5px solid rgba(31, 53, 77, 0.2);
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
    border-color: var(--CouleurSecondaire);
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 152, 158, 0.1);
}

.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder {
    color: #bbb;
}

.lp-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.lp-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: clamp(16px, 1.3vw, 19px);
    padding: 18px 32px;
    border-radius: 14px;
    margin-top: 8px;
}

.lp-form-notice {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.85vw, 13px);
    color: #aaa;
    text-align: center;
    margin-top: 14px;
}

/* ===== SUCCESS ===== */
#LPSuccessCard {
    background: white;
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    border: 1.5px solid rgba(3, 152, 158, 0.2);
    box-shadow: 0 8px 40px rgba(31, 53, 77, 0.08);
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#LPSuccessIcon .material-symbols-outlined {
    font-size: 64px;
    color: var(--CouleurSecondaire);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

#LPSuccessCard h2 {
    font-family: var(--FontFamily);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--CouleurPrimaire);
}

#LPSuccessCard p {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.1vw, 17px);
    color: #555;
    line-height: 1.65;
    max-width: 420px;
}

/* ===== FAQ ===== */
#LPFAQList {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.lp-faq-item {
    background: white;
    border: 1.5px solid rgba(31, 53, 77, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.lp-faq-item.open {
    border-color: rgba(3, 152, 158, 0.3);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 600;
    color: var(--CouleurPrimaire);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lp-faq-question:hover {
    background: rgba(3, 152, 158, 0.04);
}

.lp-faq-question .material-symbols-outlined {
    font-size: 22px;
    flex-shrink: 0;
    color: var(--CouleurSecondaire);
    transition: transform 0.25s ease;
}

.lp-faq-item.open .lp-faq-question .material-symbols-outlined {
    transform: rotate(180deg);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-item.open .lp-faq-answer {
    max-height: 300px;
}

.lp-faq-answer p {
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1.05vw, 16px);
    color: #555;
    line-height: 1.7;
    padding: 0 24px 22px;
}

#LPFAQCta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

#LPFAQCta p {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.1vw, 17px);
    color: #555;
}

/* ===== TUTORAT PRIVÉ ===== */
#LPTutoratPrive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 5%;
    border-top: 1px solid rgba(31, 53, 77, 0.08);
    background: #f8f9fa;
}

#LPTutoratPrive p {
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1.1vw, 16px);
    color: #777;
    margin: 0;
}

#LPTutoratPrive a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    color: var(--CouleurSecondaire);
    text-decoration: none;
    transition: gap 0.2s ease;
}

#LPTutoratPrive a:hover {
    gap: 10px;
}

#LPTutoratPrive a .material-symbols-outlined {
    font-size: 18px;
}

/* ===== STICKY BAR MOBILE ===== */
#LPStickyBar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width:100%;
    padding: 12px 20px 20px;
    background: white;
    border-top: 1px solid rgba(31, 53, 77, 0.1);
    box-shadow: 0 -8px 24px rgba(31, 53, 77, 0.1);
    z-index: 200;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#LPStickyBar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

#LPStickyBar .lp-cta-btn {
    justify-content: center;
    width: auto;
    max-width: 360px;
}

/* ===== BARRE DE CONFIANCE ===== */
#LPTrustBar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--CouleurPrimaire);
    padding: 20px 5%;
}

.lp-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 36px;
}

.lp-trust-number {
    font-family: var(--FontFamily);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.lp-trust-label {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.lp-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== CARROUSEL TUTEURS ===== */
#LPCarrouselSection {
    padding: 32px 0 16px;
    overflow: hidden;
    max-width: 100vw;
}

#LPCarrouselLabel {
    font-family: var(--FontFamily);
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 500;
    color: #aaa;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

#CarrouselTuteur {
    width: 100%;
}

@keyframes slides {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

#CarrouselTuteur .logos {
    overflow: hidden;
    padding: 8px 0;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

#CarrouselTuteur .logos:before,
#CarrouselTuteur .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#CarrouselTuteur .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0) 5%, white 100%);
}

#CarrouselTuteur .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0) 5%, white 100%);
}

#CarrouselTuteur .logo_items {
    display: inline-block;
    animation: 55s slides infinite linear;
}

#CarrouselTuteur .logos:hover .logo_items {
    animation-play-state: paused;
}

#CarrouselTuteur .logo_items img {
    height: 80px;
    width: 80px;
    padding-left: 15px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== TÉMOIGNAGES ===== */
#LPTemoignages #TemoignagesContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.Temoignage {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 28px 28px 40px;
    box-shadow: 0 4px 20px rgba(31, 53, 77, 0.08);
    border: 1.5px solid rgba(31, 53, 77, 0.06);
    height: fit-content;
    transition: transform 0.2s ease;
}

.Temoignage:hover {
    transform: translateY(-3px);
}

.TemoignageHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.TemoignageHeader img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.TemoignageTuteur {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.TuteurNom {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
    color: var(--CouleurPrimaire);
}

.TuteurTitre {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.9vw, 14px);
    color: #888;
}

.TemoignageRatings {
    margin-bottom: 14px;
}

.RatingRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.RatingLabel {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.85vw, 13px);
    color: #777;
    min-width: 140px;
}

.RatingStars {
    display: flex;
    gap: 2px;
}

.RatingStars .material-symbols-outlined {
    font-size: 17px;
    color: #e0e0e0;
}

.RatingStars .material-symbols-outlined.filled {
    color: #FFD700;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.TemoignageTexte {
    font-family: var(--FontFamily);
    font-size: clamp(14px, 1.05vw, 16px);
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.TemoignageAuteur {
    font-family: var(--FontFamily);
    font-size: clamp(12px, 0.9vw, 14px);
    color: var(--CouleurSecondaire);
    font-weight: 500;
}

/* ===== UTILITAIRES ===== */
.hidden {
    display: none !important;
}

/* ===== RESPONSIVE ===== */
@media only screen and (max-width: 960px) {
    #LPHeroInner {
        flex-direction: column;
        gap: 40px;
    }

    #LPHeroText {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    #LPHeroBadge {
        align-self: center;
    }

    #LPHeroTags {
        justify-content: center;
    }

    #LPHeroVideo {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    #LPStepsGrid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .lp-step {
        max-width: 100%;
        width: 100%;
    }

    .lp-step-arrow {
        padding: 0;
        transform: rotate(90deg);
    }

    #LPBenefitsGrid {
        grid-template-columns: 1fr;
    }

    #LPPricingMain {
        flex-direction: column;
        gap: 28px;
    }

    .lp-pricing-divider {
        width: 60px;
        height: 1px;
        margin: 0;
    }

    .lp-form-row {
        grid-template-columns: 1fr;
    }

    #LPForm {
        background: linear-gradient(160deg, #f0f7ff 0%, #e8f5f5 50%, #fff8f3 100%);
        max-width: 100%;
        width: 100%;
        padding: 48px 5%;
    }

    #LPFormWrapper {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
    }

    #LPFormHeader {
        margin-bottom: 28px;
        text-align: center;
    }

    #LPFormHeader .lp-section-sub {
        max-width: 100%;
    }

    #LPPricingCard {
        padding: 48px 24px 36px;
    }
}

@media only screen and (max-width: 600px) {
    #LPHero {
        padding: 50px 5% 60px;
    }

    #LPHeroTitle {
        font-size: clamp(32px, 9vw, 46px);
    }

    .lp-header-contact span.material-symbols-outlined {
        display: none;
    }

    .lp-section {
        padding: 56px 5%;
    }

    #LPStickyBar {
        display: flex;
        justify-content: center;
        width: 100vw;
        left: 0;
        right: 0;
    }

    #LPTrustBar {
        gap: 16px;
    }

    .lp-trust-stat {
        padding: 0 16px;
    }

    .lp-trust-divider {
        display: none;
    }

    #LPTemoignages #TemoignagesContainer {
        grid-template-columns: 1fr;
    }
}
