/* =====================================================
   COMPLÉMENT CSS - Landing Quiz optimisée
   À ajouter APRÈS ton fichier CSS principal
   ===================================================== */

/* Highlight doré dans le titre */
.title-highlight {
    color: var(--or);
    position: relative;
}

/* Strip de preuves */
.proof-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--texte-muted);
}

.proof-item svg {
    color: var(--or);
    flex-shrink: 0;
}

/* Séparateur doré */
.landing-separator {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    margin: 0 auto 2.5rem;
}

/* Section pain points */
.pain-section {
    max-width: 480px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.pain-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--texte-muted);
    margin-bottom: 1.2rem;
    text-align: center;
    opacity: 0.7;
}

.pain-item {
    position: relative;
    padding: 0.85rem 1.2rem 0.85rem 1.5rem;
    color: var(--texte-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    border-left: 1px solid rgba(91, 58, 125, 0.3);
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal);
}

.pain-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--violet-light);
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.pain-item:hover {
    color: var(--texte);
    border-left-color: var(--violet);
}

.pain-item:hover::before {
    opacity: 1;
}

/* Zone CTA */
.cta-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.cta-note {
    font-size: 0.78rem;
    color: var(--texte-muted);
    letter-spacing: 0.03em;
    opacity: 0.6;
}

/* Citation du bas */
.bottom-quote {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bottom-quote p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--texte-muted);
    font-style: italic;
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

.bottom-quote p strong {
    color: var(--texte);
    font-weight: 600;
    font-style: normal;
}

/* =====================================================
   RESPONSIVE COMPLÉMENTAIRE
   ===================================================== */
@media (max-width: 640px) {
    .proof-strip {
        gap: 1rem;
    }

    .proof-item {
        font-size: 0.78rem;
    }

    .pain-section {
        max-width: 100%;
    }

    .pain-item {
        font-size: 0.9rem;
        padding: 0.75rem 1rem 0.75rem 1.3rem;
    }

    .cta-zone .btn-large {
        width: 100%;
    }
}
