/* ═══════════════════════════════════════════════════
   ELECTRICIEN.CSS — Sud Web Project
   Sections spécifiques pages métier.
   Charger APRÈS global.css.
   ═══════════════════════════════════════════════════ */

/* ── HERO MÉTIER ──────────────────────────────────── */
.hero-metier {
    min-height: 95vh;
    padding: 9rem 2rem 6rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, rgba(59, 130, 246, .05) 100%);
}

.hero-metier::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 60% 45%, rgba(59, 130, 246, .09), transparent);
    pointer-events: none;
}

.hero-metier-inner {
    max-width: var(--max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-metier-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 1.75rem;
    animation: fadeSlideDown .8s var(--ease) .2s both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-l);
    animation: pulse 2s ease infinite;
}

.hero-metier-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 1.75rem;
}

.hero-metier-title .split-reveal .rv-inner {
    transition: transform 1.4s cubic-bezier(.77, 0, .175, 1), opacity 1.2s ease;
}

.hero-metier-title .split-reveal:nth-child(2) .rv-inner {
    transition-delay: .18s;
}

.hero-metier-sub {
    font-size: 1.15rem;
    color: var(--mist);
    line-height: 1.85;
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeSlideDown .8s var(--ease) .9s both;
}

.hero-metier-sub strong {
    color: #fff;
}

.hero-metier-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeSlideDown .8s var(--ease) 1.1s both;
}

.hero-metier-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeSlideDown .8s var(--ease) 1.3s both;
}

.hm-metric {
    text-align: center;
}

.hm-metric-n {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-l);
    line-height: 1;
    margin-bottom: .3rem;
    letter-spacing: -.03em;
}

.hm-metric-l {
    font-size: .72rem;
    color: var(--mist-2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hm-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    flex-shrink: 0;
}

.hero-metier-img {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    animation: fadeSlideLeft .9s var(--ease) .5s both;
}

.hero-metier-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.hero-metier-img:hover img {
    transform: scale(1.04);
}

.hero-metier-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, .12), rgba(0, 0, 0, .15));
    pointer-events: none;
}

.hero-metier-img-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(8, 12, 20, .82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50px;
    color: var(--mist);
    font-size: .8rem;
    font-weight: 500;
}

.hero-img-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse 2s infinite;
}

.section-em {
    font-style: italic;
    color: var(--blue-l);
    display: block;
}

/* ── 2. PROBLÈME ──────────────────────────────────── */
.section-probleme {
    padding: 7rem 2rem;
    background: var(--ink-2);
    position: relative;
}

.section-probleme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .3), transparent);
}

.probleme-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.probleme-quote {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
    margin: 1.5rem 0 2rem;
    letter-spacing: -.02em;
}

.probleme-quote em {
    color: var(--blue-l);
    font-style: italic;
}

.probleme-sub {
    color: var(--mist);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto;
}

/* ── 3. SOLUTION ──────────────────────────────────── */
.section-solution {
    padding: 7rem 2rem;
    background: var(--ink);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
}

.solution-intro {
    color: var(--mist);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: 1.5rem;
}

.solution-intro strong {
    color: #fff;
}

.solution-img {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
}

.solution-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r);
}

.solution-img-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    padding: .6rem 1.2rem;
    background: rgba(8, 12, 20, .88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: .82rem;
    font-weight: 700;
    color: var(--blue-l);
}

/* ── 4. BÉNÉFICES ──────────────────────────────────── */
.section-benefices {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
}

.section-benefices .section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.benefices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--max);
    margin: 0 auto;
}

.benefice-card {
    position: relative;
    background: var(--glass-2);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2.75rem;
    overflow: hidden;
    transition: all var(--dur) var(--ease);
}

.benefice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease);
}

.benefice-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(59, 130, 246, .07), transparent 60%);
    opacity: 0;
    transition: opacity .4s ease;
}

.benefice-card:hover {
    border-color: var(--border-h);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.benefice-card:hover::before {
    transform: scaleX(1);
}

.benefice-card:hover::after {
    opacity: 1;
}

.benefice-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, .06);
    line-height: 1;
    font-family: var(--ff-display);
}

.benefice-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, .5));
}

.benefice-card h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: .5rem;
}

.benefice-card h4 {
    color: var(--blue-l);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .875rem;
}

.benefice-card p {
    color: var(--mist);
    font-size: .95rem;
    line-height: 1.8;
}

/* ── 5. PREUVE ──────────────────────────────────────── */
.section-preuve {
    padding: 7rem 2rem;
    background: var(--ink-2);
}

.preuve-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--border-h);
    border-radius: var(--r);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.preuve-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-d), var(--blue-l), var(--blue-d));
}

.preuve-quote-icon {
    font-size: 3rem;
    color: var(--blue);
    opacity: .4;
    margin-bottom: 1rem;
    line-height: 1;
    display: block;
}

.preuve-text {
    font-family: var(--ff-display);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.preuve-sub {
    color: var(--mist);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.preuve-sub strong {
    color: #fff;
}

.preuve-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.preuve-stat {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    background: rgba(59, 130, 246, .08);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}

.preuve-stat-n {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue-l);
    line-height: 1;
}

.preuve-stat-l {
    font-size: .8rem;
    color: var(--mist);
    font-weight: 500;
}

/* ── TARIFS MÉTIER ──────────────────────────────────── */
.section-tarifs {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.section-tarifs .section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.tarifs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
    max-width: var(--max);
    margin-inline: auto;
}

.tarif-card-e {
    background: var(--glass-2);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all var(--dur) var(--ease);
    position: relative;
}

.tarif-card-e:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.tarif-card-e.tarif-feat {
    border-color: var(--blue);
    box-shadow: 0 0 40px rgba(59, 130, 246, .2);
    transform: scale(1.03);
}

.tarif-card-e.tarif-feat:hover {
    transform: scale(1.03) translateY(-6px);
}

.tarif-top-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: .3rem 1rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-d));
    color: #fff;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.tarif-icon {
    font-size: 2.25rem;
    margin-bottom: .875rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, .5));
}

.tarif-head {
    text-align: center;
}

.tarif-head h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.tarif-from {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--mist-2);
    margin-bottom: .2rem;
}

.tarif-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-l);
    letter-spacing: -.03em;
    line-height: 1;
}

.tarif-feats-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.tarif-feats-list li {
    color: var(--mist);
    font-size: .875rem;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tarif-card-e .btn-outline,
.tarif-card-e .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.tarif-note {
    max-width: 680px;
    margin: 1.5rem auto 0;
    padding: 1.25rem 1.75rem;
    background: rgba(239, 68, 68, .05);
    border-left: 2px solid #EF4444;
    border-radius: var(--r-sm);
    color: var(--mist);
    font-size: .875rem;
    line-height: 1.7;
}

.tarif-note strong {
    color: #FCA5A5;
}

/* ── 6. SEO LOCAL ──────────────────────────────────── */
.section-seo-local {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.section-seo-local .section-label {
    color: #2563eb;
}

.section-seo-local .section-label::before {
    background: #2563eb;
}

.section-seo-local .section-title {
    color: #1e293b;
}

.section-seo-local .section-title::after {
    background: #2563eb;
}

.section-seo-local .section-em {
    color: #3b82f6;
}

.seo-local-intro {
    color: #475569;
    font-size: 1rem;
    line-height: 1.85;
    max-width: 780px;
    margin: 1.5rem 0 2.5rem;
}

.seo-local-intro strong {
    color: #1e293b;
}

.seo-local-intro a {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 1px solid rgba(37, 99, 235, .3);
    transition: border-color .2s;
}

.seo-local-intro a:hover {
    border-color: #2563eb;
}

.villes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ville-link-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.4rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.ville-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: transparent;
    transition: background .25s;
}

.ville-link-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 8px 30px rgba(59, 130, 246, .1);
    transform: translateY(-3px);
}

.ville-link-card:hover::before {
    background: #2563eb;
}

.ville-link-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #1e293b;
}

.ville-link-card p {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.5;
}

.ville-link-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    margin-top: .35rem;
    width: fit-content;
}

/* ── FAQ MÉTIER ────────────────────────────────────── */
.section-faq {
    padding: 7rem 2rem;
    background: var(--ink);
}

.faq-elec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-elec-item {
    background: var(--glass-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .3s ease;
}

.faq-elec-item:hover {
    border-color: var(--border-h);
}

.faq-elec-item[open] {
    border-color: var(--blue);
}

.faq-elec-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    list-style: none;
    gap: 1rem;
}

.faq-elec-item summary::-webkit-details-marker {
    display: none;
}

.faq-elec-item summary h3 {
    font-family: var(--ff-display);
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

.faq-elec-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--blue-l);
    flex-shrink: 0;
    font-weight: 300;
    transition: transform .3s ease;
}

.faq-elec-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-elec-item>p {
    padding: 1.25rem 1.75rem 1.5rem;
    color: var(--mist);
    font-size: .9rem;
    line-height: 1.8;
    border-top: 1px solid var(--border);
}

.faq-elec-item>p strong {
    color: #fff;
}

/* ── 7. CTA FINAL ──────────────────────────────────── */
.section-cta-final {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--ink-2) 0%, rgba(59, 130, 246, .06) 50%, var(--ink) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(59, 130, 246, .07), transparent);
    pointer-events: none;
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-final-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 1.5rem 0 1.25rem;
}

.cta-final-sub {
    color: var(--mist);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.cta-final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-seo-text {
    font-size: .75rem;
    color: var(--mist-2);
    margin-top: 2rem;
    line-height: 1.8;
}

/* ── RESPONSIVE MÉTIER ────────────────────────────── */

/* ─── 1024px ─────────────────────────────────────── */
@media (max-width:1024px) {

    /* Hero : 1 colonne, image en haut */
    .hero-metier-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-metier-img {
        order: -1;
    }

    .hero-metier-img img {
        height: 380px;
    }

    /* Solution : 1 colonne */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solution-img img {
        height: auto;
    }

    /* Bénéfices : 1 colonne */
    .benefices-grid {
        grid-template-columns: 1fr;
    }

    /* Tarifs : 1 colonne centrée */
    .tarifs-grid-3 {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }

    .tarif-card-e.tarif-feat {
        transform: none;
    }

    /* Villes : 2 colonnes */
    .villes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ : 1 colonne */
    .faq-elec-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── 768px ───────────────────────────────────────── */
@media (max-width:768px) {

    /* ── HERO ── */
    .hero-metier {
        padding: 5.5rem 1.25rem 3rem;
        min-height: auto;
        text-align: center;
    }

    .hero-metier-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-metier-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-metier-title {
        font-size: clamp(1.9rem, 7.5vw, 2.8rem);
        text-align: center;
    }

    .hero-metier-badge {
        justify-content: center;
    }

    .hero-metier-sub {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-metier-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: .875rem;
    }

    .hero-metier-actions .btn-hero,
    .hero-metier-actions .btn-ghost-hero {
        width: 100%;
        justify-content: center;
        max-width: 360px;
    }

    .hero-metier-metrics {
        gap: 1.25rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hm-metric-n {
        font-size: 1.4rem;
    }

    .hm-metric-l {
        font-size: .65rem;
    }

    .hm-sep {
        height: 28px;
    }

    /* Image hero mobile */
    .hero-metier-img {
        order: -1;
    }

    .hero-metier-img img {
        height: 260px;
        width: 100%;
    }

    .hero-metier-img-label {
        font-size: .72rem;
    }

    /* ── SECTIONS paddings ── */
    .section-probleme,
    .section-solution,
    .section-benefices,
    .section-preuve,
    .section-seo-local,
    .section-tarifs,
    .section-faq,
    .section-cta-final {
        padding: 4rem 1.25rem;
    }

    /* ── PROBLÈME ── */
    .probleme-quote {
        font-size: 1.4rem;
        text-align: center;
    }

    .probleme-sub {
        font-size: .95rem;
        text-align: center;
    }

    .probleme-inner {
        text-align: center;
    }

    /* ── SOLUTION ── */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-img img {
        height: auto;
    }

    .solution-text {
        text-align: center;
    }

    .solution-intro {
        font-size: 1rem;
    }

    /* ── BÉNÉFICES ── */
    .benefices-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .benefice-card {
        padding: 2rem 1.5rem;
    }

    .section-benefices .section-head {
        text-align: center;
    }

    /* ── PREUVE ── */
    .preuve-inner {
        padding: 2rem 1.25rem;
    }

    .preuve-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .preuve-stat {
        justify-content: center;
    }

    .preuve-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* ── TARIFS ── */
    .tarifs-grid-3 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .tarif-card-e {
        padding: 1.75rem 1.25rem;
    }

    .tarif-card-e.tarif-feat {
        transform: none;
    }

    .section-tarifs .section-head {
        text-align: center;
    }

    /* ── SEO LOCAL ── */
    .section-seo-local .section-title {
        color: #1e293b;
    }

    .villes-grid {
        grid-template-columns: 1fr;
    }

    .seo-local-intro {
        font-size: .95rem;
    }

    /* ── FAQ ── */
    .faq-elec-grid {
        grid-template-columns: 1fr;
    }

    .faq-elec-item summary {
        padding: 1.25rem 1.25rem;
    }

    /* ── CTA FINAL ── */
    .cta-final-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: center;
        gap: .875rem;
    }

    .cta-final-actions .btn-hero,
    .cta-final-actions .btn-ghost-hero {
        width: 100%;
        justify-content: center;
        max-width: 360px;
    }

    .cta-final-sub {
        font-size: 1rem;
    }
}

/* ─── 480px ───────────────────────────────────────── */
@media (max-width:480px) {
    .hero-metier-title {
        font-size: 1.75rem;
    }

    .hero-metier-img img {
        height: 220px;
    }

    .benefice-card {
        padding: 1.75rem 1.25rem;
    }

    .tarif-card-e {
        padding: 1.5rem 1rem;
    }

    .preuve-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hm-metric-n {
        font-size: 1.2rem;
    }

    .hm-metric-l {
        font-size: .6rem;
    }

    .hm-sep {
        height: 24px;
    }
}