/* ── HERO ── */
.home-hero {
    background: #fff;
    padding: 80px 0 60px;
}

.home-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;
}

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

.home-eyebrow--light::before {
    background: var(--red-light);
}

.home-eyebrow--light::home {
    background: var(--red-light);
}

.home-eyebrow--light {
    color: var(--red-light);
}

.home-hero-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;
}

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

.home-hero-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── BOUTONS HERO ── */
.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 2px;
}

.home-btn--red {
    background: var(--red);
    color: #fff;
    padding: 12px 24px;
    border: 1px solid transparent;
}

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

.home-btn--link {
    color: var(--gray-700);
    padding: 0;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
}

.home-btn--link:hover {
    color: var(--red);
    border-color: var(--red);
}

.home-btn--outline {
    background: #fff;
    color: var(--gray-700);
    padding: 12px 24px;
    border: 1px solid var(--gray-100);
}

.home-btn--outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.home-btn--white {
    background: #fff;
    color: var(--red);
    padding: 12px 24px;
    margin-top: 12px;
}

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

/* ── DOMAINES ── */
.home-domains {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 32px;
}

.home-domains-title {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.home-domain-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-domain-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.home-domain-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home-domain-number {
    font-size: 0.875rem;
    color: var(--red);
    font-weight: 600;
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 2px;
}

.home-domain-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.home-domain-item p {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin: 0;
    line-height: 1.5;
}

/* ── CHIFFRES ── */
.home-numbers {
    background: var(--gray-900);
    padding: 48px 0;
}

.home-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.home-number-item {
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.home-number-item:last-child {
    border-right: none;
}

.home-number-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.home-number-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

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

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

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

/* ── CE QUE NOUS FAISONS ── */
.home-expertises {
    background: #fff;
    padding: 80px 0;
}

.home-expertises-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.home-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: 0;
}

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

.home-section-title--light {
    color: #fff;
    margin-bottom: 24px;
}

.home-tout-voir {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: color 0.2s;
}

.home-tout-voir:hover {
    color: var(--red);
    border-color: var(--red);
}

.home-expertise-list {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.home-expertise-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.home-expertise-row:last-child {
    border-bottom: none;
}

.home-expertise-row:hover {
    background: #fafafa;
}

.home-expertise-number {
    font-size: 0.875rem;
    color: var(--red);
    font-weight: 600;
    opacity: 0.5;
    flex-shrink: 0;
    width: 24px;
}

.home-expertise-content {
    flex: 1;
}

.home-expertise-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.home-expertise-content p {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin: 0;
}

.home-expertise-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-300);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.home-expertise-link:hover {
    color: var(--red);
}

/* ── ESN ── */
.home-esn {
    background: var(--gray-900);
    padding: 80px 0;
}

.home-esn-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    margin-bottom: 12px;
}

.home-esn-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.08);
}

.home-esn-stat {
    padding: 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.home-esn-stat:nth-child(2),
.home-esn-stat:nth-child(4) {
    border-right: none;
}

.home-esn-stat:nth-child(3),
.home-esn-stat:nth-child(4) {
    border-bottom: none;
}

.home-esn-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-light);
    margin-bottom: 8px;
}

.home-esn-stat-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
}

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

.home-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
}

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

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

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

/* ── Carte coordonnées dans le CTA ── */
.home-cta-coordonnees {
    background: var(--gray-900);
    border-radius: 6px;
    padding: 24px 24px;
}

.home-cta-coordonnees-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.home-cta-coordonnees-title::before,
.home-cta-coordonnees-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

.home-cta-coord-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.home-cta-coord-item:last-child {
    margin-bottom: 0;
}

.home-cta-coord-icon {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.home-cta-coord-body h6 {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 3px;
}

.home-cta-coord-body p,
.home-cta-coord-body a {
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s;
}

.home-cta-coord-body a:hover {
    color: #ffaaaa;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .home-numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-number-item:nth-child(2) {
        border-right: none;
    }

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

@media (max-width: 768px) {
    .home-numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .home-expertises-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .home-expertise-row {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .home-hero {
        padding: 32px 0 40px;
    }

    .home-hero-desc {
        max-width: 100%;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .home-btn--red,
    .home-btn--outline {
        width: 100%;
        justify-content: center;
    }

    .home-domains {
        padding: 20px;
        margin-top: 32px;
    }

    .home-numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-number-item:nth-child(2) {
        border-right: none;
    }

    .home-expertise-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .home-expertise-link {
        width: 100%;
        justify-content: flex-end;
    }

    .home-esn {
        padding: 48px 0;
    }

    .home-cta {
        padding: 48px 0;
    }

    .home-cta-phone {
        font-size: 1.6rem;
    }

    .home-btn--white {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
