/* ═══════════════════════════════════════════════════
   MISSION VITRINE
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.mv-hero {
    background: linear-gradient(135deg, #0a1929 0%, #1a2f42 60%, #2a4158 100%);
    padding: 130px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: #0066ff;
    opacity: 0.05;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.mv-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mv-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.7em;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
}

.mv-hero-sub {
    color: #94a3b8;
    font-size: 1.12em;
    line-height: 1.75;
    margin: 0;
    max-width: 580px;
}

.mv-hero-features {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

/* landing-badge adapté au fond sombre */
.mv-hero .landing-badge {
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.4);
    color: #60a5fa;
}

/* landing-feature : texte blanc + débloquer fa-handshake
   (home.css le masque globalement) */
.mv-hero .landing-feature {
    display: flex !important;
    color: rgba(255, 255, 255, 0.85);
}

.mv-hero .landing-feature i,
.mv-hero .landing-feature i.fa-handshake {
    display: flex !important;
    color: #fff;
}

/* CTA hero centré (offer-btn a align-self: flex-start dans home.css) */
.mv-hero-cta {
    align-self: center !important;
    display: inline-block;
    margin-top: 8px;
}

.offer-btn {
    margin: auto;
}

/* ── Situation + Ce que je propose empilés verticalement ──
   Deux blocs dans une seule glass-card, séparés par une ligne fine.
   glass-card impose margin: auto sur enfants directs → on réinitialise. */
.mv-stacked {
    background: #f8fafc !important;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
}

.mv-stacked>* {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.mv-stacked-block {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mv-stacked-block p {
    color: #4a5568;
    font-size: 1em;
    line-height: 1.85;
    margin-bottom: 14px;
}

.mv-stacked-block p:last-child {
    margin-bottom: 0;
}

.mv-stacked-block strong {
    color: #1a2f42;
}

/* Séparateur entre les deux blocs — espace réduit */
.mv-stacked-divider {
    width: 100%;
    max-width: 760px;
    height: 1px;
    background: #e2e8f0;
    margin: 32px auto;
}

/* Titre de chaque bloc */
.mv-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3em;
    font-weight: 800;
    color: #0066ff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.mv-col-title i {
    margin-right: 10px;
    font-size: 0.88em;
    opacity: 0.85;
}

/* ── Bloc texte centré avec largeur contrainte ── */
.mv-text-block {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.mv-text-block p {
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.85;
    margin-bottom: 16px;
}

.mv-text-block p:last-child {
    margin-bottom: 0;
}

.mv-text-block strong {
    color: #1a2f42;
}

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

/* ── Fond gris pour "Exemple concret" ── */
.mv-bg-gray {
    background: #f8fafc !important;
}

/* ── Intro de section ── */
.mv-section-intro {
    text-align: center;
    color: #4a5568;
    font-size: 1.08em;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 48px;
}

.mv-section-intro strong {
    color: #0066ff;
}

/* ── Steps 3 colonnes (composant propre à cette page, fond clair) ── */
.mv-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto 48px;
    position: relative;
}

.mv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 16px;
}

.mv-step-connector {
    position: absolute;
    top: 26px;
    left: calc(50% + 26px);
    right: calc(-50% + 26px);
    height: 2px;
    background: rgba(0, 102, 255, 0.3);
}

.mv-step-connector--last {
    display: none;
}

.mv-step-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
    flex-shrink: 0;
}

.mv-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--accent-color);
    padding: 22px 18px;
    width: 100%;
    text-align: center;
    flex: 1;
}

.mv-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 10px;
}

.mv-step-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9em;
}

/* ── Bloc étude de cas ── */
.mv-case-study {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #0066ff;
    padding: 28px 32px;
    max-width: 760px;
    margin: 0 auto;
}

.mv-case-icon {
    font-size: 2em;
    color: #0066ff;
    flex-shrink: 0;
    margin-top: 4px;
}

.mv-case-study p {
    color: #4a5568;
    font-size: 1em;
    line-height: 1.75;
    margin: 0 0 18px;
}

/* Bouton secondaire contour */
.mv-btn-secondary {
    background: transparent !important;
    color: #0066ff !important;
    border: 2px solid #0066ff;
    box-shadow: none !important;
}

.mv-btn-secondary:hover {
    background: #0066ff !important;
    color: #fff !important;
}

/* ── Comparaison tarifaire ── */
.mv-pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 40px auto 32px;
    max-width: 680px;
    flex-wrap: wrap;
}

.mv-price-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 36px 28px !important;
    gap: 10px !important;
}

.mv-price-label {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #718096;
    margin-bottom: 4px;
}

.mv-price-label--vitrine {
    color: var(--accent-color);
}

.mv-price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8em;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.mv-price-striked {
    color: #cbd5e0;
    text-decoration: line-through;
}

.mv-price-highlight {
    color: #0066ff;
}

.mv-pricing-arrow {
    font-size: 1.6em;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* ── Contrepartie ── */
.mv-contrepartie {
    max-width: 620px;
    margin: 32px auto;
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #0066ff;
    padding: 28px 32px;
}

.mv-contrepartie-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 18px;
}

.mv-contrepartie-title i {
    color: #0066ff;
    margin-right: 10px;
}

.mv-contrepartie-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-contrepartie-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 0.97em;
    line-height: 1.6;
}

.mv-contrepartie-list li i {
    color: #0066ff;
    font-size: 0.85em;
    flex-shrink: 0;
}

/* ── Paiement en 3 fois ── */
.mv-payment-block {
    max-width: 620px;
    margin: 0 auto 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #0066ff;
    padding: 28px 32px;
}

.mv-payment-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05em;
    font-weight: 700;
    color: #1a2f42;
    margin: 0 0 22px;
}

.mv-payment-title i {
    color: #0066ff;
    margin-right: 10px;
}

.mv-payment-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mv-payment-step {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mv-payment-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-payment-step div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mv-payment-step strong {
    color: #1a2f42;
    font-size: 0.95em;
}

.mv-payment-step span {
    color: #718096;
    font-size: 0.87em;
    line-height: 1.5;
}

/* ── Note engagement 12 mois (dans section maintenance) ── */
.mv-commitment-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #0066ff;
}

.mv-commitment-note i {
    color: #0066ff;
    font-size: 1em;
    flex-shrink: 0;
    margin-top: 2px;
}

.mv-commitment-note p {
    color: #4a5568;
    font-size: 0.9em;
    line-height: 1.65;
    margin: 0;
}

/* ── Avertissement scarcité ── */
.mv-scarcity {
    max-width: 680px;
    margin: 0 auto 36px;
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.04);
}

.mv-scarcity i {
    color: #0066ff;
}

/* ── CTA centré ── */
.mv-cta-center {
    text-align: center;
}

/* ── Note devis (dans section sombre .avantages) ── */
.mv-note-devis {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 40px auto 0;
    max-width: 760px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mv-note-devis i {
    color: #60a5fa;
    font-size: 1.1em;
    flex-shrink: 0;
    margin-top: 2px;
}

.mv-note-devis p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93em;
    line-height: 1.65;
    margin: 0;
}

/* ── Section "après" — maintenance ── */
.mv-apres {
    background: #f8fafc !important;
}

.mv-maintenance-block {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #0066ff;
    padding: 48px;
    flex-wrap: wrap;
}

.mv-maintenance-price {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mv-maintenance-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2em;
    font-weight: 900;
    color: #0066ff;
    line-height: 1;
}

.mv-maintenance-period {
    font-size: 1em;
    color: #4a5568;
    font-weight: 600;
    margin-top: 4px;
}

.mv-maintenance-details {
    flex: 1;
    min-width: 220px;
}

/* ── Lignes de tarif (section après) ── */
.mv-tarif-ligne {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.mv-tarif-prix {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 90px;
}

.mv-tarif-montant {
    font-size: 2.2em;
}

.mv-tarif-desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
}

.mv-tarif-desc strong {
    color: #1a2f42;
    font-size: 1em;
}

.mv-tarif-desc span {
    color: #4a5568;
    font-size: 0.92em;
    line-height: 1.6;
}

.mv-tarif-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 24px 0;
}

/* ── Bandeau CTA final ── */
.mv-cta-banner {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 60%, #3385ff 100%);
    padding: 56px 24px;
}

.mv-cta-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.mv-cta-banner-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}

.mv-cta-banner-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    line-height: 1.5;
}

.mv-cta-banner-btn {
    background: #fff !important;
    color: #0066ff !important;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.mv-cta-banner-btn:hover {
    background: #f0f7ff !important;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .mv-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mv-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }

    .mv-step-connector {
        display: none;
    }

    .mv-step-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .mv-step-card {
        text-align: left;
        border-top: 1px solid #e2e8f0;
        border-left: 3px solid var(--accent-color);
    }

    .mv-cta-banner-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mv-hero h1 {
        font-size: 1.9em;
    }

    .mv-hero {
        padding: 110px 20px 70px;
    }

    .mv-pricing-row {
        flex-direction: column;
        align-items: stretch;
    }

    .mv-pricing-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .mv-maintenance-block {
        flex-direction: column;
        gap: 28px;
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .mv-hero-features {
        gap: 16px;
    }

    .mv-case-study {
        flex-direction: column;
    }
}