/* =============================================
   Home Index — sections additionnelles
   ============================================= */

/* ── Barre "Conçu pour" ── */
.h-proof-band {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.1rem 2rem;
}

.h-proof-band-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.h-proof-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    margin: 0;
}

.h-proof-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.h-proof-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
}

.h-proof-item i {
    color: #6022c4;
    font-size: 1rem;
}

/* ── Section douleur ── */
.h-pain-section {
    padding: 5rem 4rem;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.h-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.h-pain-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.h-pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6022c4, #a78bfa);
}

.h-pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0e8ff;
    color: #6022c4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.h-pain-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.h-pain-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.h-pain-solution {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6022c4;
}

/* ── Comment ça marche ── */
.h-how-section {
    padding: 5rem 4rem;
    background: #f8fafc;
}

.h-how-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.h-how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 860px;
    margin: 3rem auto 0;
}

.h-how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
}

.h-how-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #6022c4;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.h-how-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.h-how-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.h-how-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6022c4, #a78bfa);
    margin-top: 26px;
}

.h-how-cta {
    text-align: center;
    margin-top: 3rem;
}

.h-how-cta a {
    display: inline-block;
    background: #6022c4;
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.h-how-cta a:hover {
    background: #4e1aa0;
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .h-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .h-pain-section,
    .h-how-section {
        padding: 3.5rem 1.5rem;
    }

    .h-pain-grid {
        grid-template-columns: 1fr;
    }

    .h-proof-band {
        padding: 1rem 1.5rem;
    }

    .h-proof-band-inner {
        gap: 0.75rem;
    }

    .h-proof-label {
        display: none;
    }

    .h-proof-items {
        gap: 0.75rem;
    }

    .h-how-steps {
        flex-direction: column;
        align-items: center;
    }

    .h-how-step {
        width: 100%;
        max-width: 320px;
        padding: 0 1rem;
    }

    .h-how-connector {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, #6022c4, #a78bfa);
        margin: 0;
    }

    .h-how-cta a {
        width: 100%;
        text-align: center;
    }
}
