/* ── HERO ── */
.srh-hero {
    background: var(--gray-900);
    color: #fff;
    padding: 80px 0 60px;
}

.srh-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.srh-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.srh-eyebrow::after{
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.srh-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.srh-hero-title em {
    font-style: italic;
    color: var(--red);
}

.srh-hero-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 480px;
}

/* ── BANDE ROUGE ── */
.srh-band {
    background: var(--red);
    padding: 16px 0;
}

.srh-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.srh-band-inner span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.04em;
}

/* ── APPROCHE ── */
.srh-approach {
    background: #fff;
    padding: 80px 0;
}

.srh-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.srh-section-title em {
    font-style: italic;
    color: var(--red);
}

.srh-section-title--light {
    color: #fff;
}

.srh-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 12px;
}

.srh-text--light {
    color: rgba(255,255,255,0.45);
}

/* ── BOUTONS ── */
.srh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 24px;
    border-radius: 2px;
}

.srh-btn:hover {
    background: var(--red-dark);
    color: #fff;
}

.srh-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}

.srh-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.srh-btn--white {
    background: #fff!important;
    color: var(--red)!important;
    margin-top: 16px;
}

.srh-btn--white:hover {
    background: rgba(255,255,255,0.9);
    color: var(--red-dark);
}

/* ── STATS ── */
.srh-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.srh-stat {
    padding: 36px 32px;
}

.srh-stat--dark {
    background: var(--gray-900);
    color: #fff;
}

.srh-stat--red {
    background: var(--red);
    color: #fff;
}

.srh-stat--light {
    background: #f0f0f0;
    color: var(--gray-900);
}

.srh-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.srh-stat-desc {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ── PRESTATIONS ── */
.srh-prestations {
    background: #f5f5f5;
    padding: 80px 0;
}

.srh-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.srh-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px;
}

.srh-card-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    opacity: 0.4;
    margin-bottom: 10px;
}

.srh-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.srh-card-list {
    list-style: disc;
    padding-left: 16px;
    margin: 0;
}

.srh-card-list li {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 4px;
}

/* ── MÉTHODE ── */
.srh-method {
    background: var(--gray-900);
    padding: 80px 0;
}

.srh-method-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.srh-method-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.srh-method-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srh-method-step strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.srh-method-step p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin: 0;
}

/* ── CTA FINAL ── */
.srh-cta {
    background: var(--red);
    padding: 72px 0;
}

.srh-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.srh-cta-title em {
    font-style: italic;
    font-weight: 400;
}

.srh-cta-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 400px;
}

.srh-cta-label {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.srh-cta-phone {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.srh-cta-email {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .srh-cards {
        grid-template-columns: 1fr;
    }

    .srh-stats {
        grid-template-columns: 1fr 1fr;
    }

    .srh-band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
