/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
    --red:       #7B1C2E;
    --red-dark:  #5A1220;
    --red-light: #F5E8EB;
    --gold:      #C8A96E;
    --black:     #0F0A0C;
    --grey:      #F3F0F1;
    --muted:     #7A6870;
    --white:     #FFFFFF;
    --radius:    10px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
}

/* ── NAV ── */
.mb-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.mb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mb-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}

.mb-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.5px;
}

.mb-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.mb-nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.15s;
}

.mb-nav-links a:hover { color: var(--red); }

.mb-nav-cta {
    padding: 9px 22px;
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius);
    font-weight: 600 !important;
}

.mb-nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ── CAROUSEL SLOT ── */
.mb-carousel-slot {
    background: var(--grey);
    border: 2px dashed rgba(123,28,46,0.2);
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
}

.mb-carousel-slot .slot-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.mb-carousel-slot p {
    font-size: 15px;
    font-weight: 500;
}

.mb-carousel-slot small {
    font-size: 13px;
    opacity: 0.7;
}

/* ── SECTIONS COMMUNES ── */
.mb-section {
    padding: 90px 2rem;
}

.mb-section-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.mb-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.mb-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.mb-subtext {
    font-size: 16px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 3rem;
}

/* ── SERVICES ── */
.mb-services { background: var(--white); }

.mb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.mb-service-card {
    background: var(--grey);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.mb-service-card:hover {
    box-shadow: 0 8px 28px rgba(123,28,46,0.1);
    transform: translateY(-3px);
}

.mb-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.mb-service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.mb-service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── POURQUOI NOUS ── */
.mb-why { background: var(--red); }

.mb-why .mb-heading { color: var(--white); }
.mb-why .mb-eyebrow { color: var(--gold); }
.mb-why .mb-subtext { color: rgba(255,255,255,0.65); }

.mb-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.mb-why-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mb-why-icon {
    font-size: 28px;
}

.mb-why-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.mb-why-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* ── COMPTES ── */
.mb-comptes { background: var(--grey); }

.mb-comptes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.mb-compte-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.mb-compte-card.mb-popular {
    background: var(--red);
    border-color: transparent;
}

.mb-popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--gold);
    color: var(--red-dark);
}

.mb-compte-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.mb-popular .mb-compte-name { color: var(--white); }

.mb-compte-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.mb-popular .mb-compte-desc { color: rgba(255,255,255,0.6); }

.mb-compte-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.mb-popular .mb-compte-price { color: var(--white); }

.mb-compte-price sup {
    font-size: 14px;
    font-weight: 500;
    vertical-align: super;
}

.mb-compte-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

.mb-popular .mb-compte-price small { color: rgba(255,255,255,0.5); }

.mb-hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.mb-popular .mb-hr { border-color: rgba(255,255,255,0.15); }

.mb-compte-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.mb-compte-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.mb-popular .mb-compte-features li { color: rgba(255,255,255,0.85); }

.mb-check {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
}

.mb-popular .mb-check { color: var(--gold); }

.mb-btn {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.15s, color 0.15s;
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    color: var(--black);
}

.mb-btn:hover { background: var(--grey); }

.mb-btn-gold {
    background: var(--gold);
    border-color: transparent;
    color: var(--red-dark);
}

.mb-btn-gold:hover { background: #b8945a; }

/* ── APP ── */
.mb-app { background: var(----gris-clair); }

.mb-app-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mb-app .mb-eyebrow { color: var(--black); }
.mb-app .mb-heading { color: var(--black); }
.mb-app .mb-subtext { color: var(--black); margin-bottom: 2rem; }

.mb-app-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mb-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--black);
    text-decoration: none;
    color: var(--black);
    transition: background 0.15s;
}

.mb-store-btn:hover { background: rgba(255,255,255,0.15); }

.mb-store-icon { font-size: 22px; }

.mb-store-label { display: flex; flex-direction: column; }

.mb-store-small {
    font-size: 10px;
    opacity: 0.6;
    line-height: 1;
}

.mb-store-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.mb-phone-mock {
    width: 220px;
    height: 420px;
    margin: 0 auto;
    background: var(--red);
    border-radius: 36px;
    border: 6px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.mb-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.mb-phone-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
}

.mb-phone-logo {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.mb-phone-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.mb-phone-balance-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
}

.mb-phone-balance {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.mb-phone-card-row {
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mb-phone-card-info { display: flex; flex-direction: column; gap: 2px; }
.mb-phone-card-name { font-size: 11px; color: rgba(255,255,255,0.6); }
.mb-phone-card-num { font-size: 12px; color: var(--white); font-weight: 500; }
.mb-phone-card-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); opacity: 0.7; }

.mb-phone-txns { display: flex; flex-direction: column; gap: 8px; }
.mb-phone-txn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 10px;
}

.mb-phone-txn-left { display: flex; align-items: center; gap: 8px; }
.mb-phone-txn-icon { font-size: 14px; }
.mb-phone-txn-name { font-size: 11px; color: rgba(255,255,255,0.8); }
.mb-phone-txn-amt { font-size: 12px; font-weight: 600; }
.mb-phone-txn-amt.neg { color: #ff7e7e; }
.mb-phone-txn-amt.pos { color: #7effd4; }

/* ── FAQ ── */
.mb-faq { background: var(--white); }

.mb-faq-list {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mb-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mb-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    gap: 1rem;
}

.mb-faq-q:hover { color: var(--red); }

.mb-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red-light);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.25s, background 0.15s;
    line-height: 1;
}

.mb-faq-item.open .mb-faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: var(--white);
}

.mb-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    padding: 0;
}

.mb-faq-item.open .mb-faq-a {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

/* ── FOOTER ── */
.mb-footer {
    background: var(--black);
    padding: 3rem 2rem 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.mb-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.mb-footer-brand .mb-logo-text { color: var(--white); font-size: 22px; }
.mb-footer-brand .mb-logo-mark { background: var(--red); }

.mb-footer-tagline {
    margin-top: 0.75rem;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 220px;
}

.mb-footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.mb-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-footer-col ul a {
    text-decoration: none;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
}

.mb-footer-col ul a:hover { color: var(--white); }

.mb-footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}


.mb-sbs-section {
    padding: 90px 2rem;
    background: #ffffff;
}

.mb-sbs-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.mb-sbs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Ligne paire : image à droite */
.mb-sbs-row.mb-sbs-reverse {
    direction: rtl;
}

.mb-sbs-row.mb-sbs-reverse > * {
    direction: ltr;
}

/* Image placeholder */
.mb-sbs-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f3f0f1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /*border: 2px dashed rgba(123,28,46,0.15);*/
    color: #7A6870;
    overflow: hidden;
}

.mb-sbs-img-icon {
    font-size: 36px;
    opacity: 0.5;
}

.mb-sbs-img-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Texte */
.mb-sbs-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mb-sbs-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B1C2E;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mb-sbs-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #0F0A0C;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
}

.mb-sbs-body {
    font-size: 15px;
    color: #7A6870;
    line-height: 1.75;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mb-sbs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #7B1C2E;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: gap 0.15s;
}

.mb-sbs-link:hover {
    gap: 10px;
}

.mb-sbs-link::after {
    content: '→';
}

/* Responsive */
@media (max-width: 720px) {
    .mb-sbs-row,
    .mb-sbs-row.mb-sbs-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
    }

    .mb-sbs-section {
        padding: 60px 1.25rem;
    }

    .mb-sbs-inner {
        gap: 52px;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .mb-why-grid { grid-template-columns: repeat(2, 1fr); }
    .mb-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .mb-nav-links { display: none; }
    .mb-section { padding: 60px 1.25rem; }
    .mb-services-grid,
    .mb-comptes-grid { grid-template-columns: 1fr; }
    .mb-why-grid { grid-template-columns: 1fr; }
    .mb-app-inner { grid-template-columns: 1fr; }
    .mb-phone-mock { display: none; }
    .mb-footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
    .mb-reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .mb-reveal.visible {
        opacity: 1;
        transform: none;
    }
}