/* =========================================================
   Muzinga Transfer — Landing carrousels moderne
   ========================================================= */

.landing-transfer-body {
    background: #FAF6EC;
}

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.mt-hero {
    position: relative;
    min-height: 88vh;
    background: #0A1F44;
    overflow: hidden;
}

.mt-hero-track {
    position: relative;
    min-height: 88vh;
    width: 100%;
}

.mt-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 22px;
}
.mt-hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.mt-hero-slide.active .mt-hero-content > * {
    animation: mtFadeUp .9s ease-out backwards;
}
.mt-hero-slide.active .mt-hero-badge    { animation-delay: .1s; }
.mt-hero-slide.active .mt-hero-title    { animation-delay: .25s; }
.mt-hero-slide.active .mt-hero-sub      { animation-delay: .4s; }
.mt-hero-slide.active .mt-hero-actions  { animation-delay: .55s; }

@keyframes mtFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mt-hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,162,39,.22), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201,162,39,.15), transparent 50%),
        linear-gradient(160deg, #0A1F44 0%, #132E5C 55%, #0A1F44 100%);
}

.mt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,31,68,.65) 0%, rgba(10,31,68,.75) 50%, rgba(10,31,68,.9) 100%);
}

.mt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
    color: #FAF6EC;
}
.mt-hero-badge {
    display: inline-block;
    background: rgba(201,162,39,.15);
    color: #C9A227;
    border: 1px solid rgba(201,162,39,.5);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.mt-hero-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.mt-hero-sub {
    font-size: 18px;
    line-height: 1.65;
    opacity: .92;
    max-width: 640px;
    margin: 0 auto 34px;
    text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.mt-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.mt-hero-actions .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform .25s;
}
.mt-hero-actions a:hover .arrow { transform: translateX(4px); }

/* Contrôles hero */
.mt-hero-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250,246,236,.1);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(250,246,236,.25);
    color: #FAF6EC;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    z-index: 5;
    transition: background .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    line-height: 1;
    padding-bottom: 4px;
}
.mt-hero-ctrl:hover {
    background: #C9A227;
    color: #0A1F44;
    border-color: #C9A227;
    transform: translateY(-50%) scale(1.08);
}
.mt-hero-ctrl.prev { left: 24px; }
.mt-hero-ctrl.next { right: 24px; }

.mt-hero-dots {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.mt-hero-dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(250,246,236,.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s, width .3s;
}
.mt-hero-dot.active {
    background: #C9A227;
    width: 60px;
}

/* Scroll hint */
.mt-hero-scroll-hint {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    color: #FAF6EC;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .6;
    z-index: 5;
    text-align: center;
}
.mt-scroll-arrow {
    font-size: 18px;
    margin-top: 4px;
    animation: mtBounce 1.6s ease-in-out infinite;
}
@keyframes mtBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* Stats band */
.mt-stats-band {
    position: relative;
    z-index: 3;
    background: #0A1F44;
    border-top: 1px solid rgba(201,162,39,.25);
    padding: 22px 22px;
}
.mt-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mt-stat {
    text-align: center;
    color: #FAF6EC;
}
.mt-stat strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #C9A227;
    font-weight: 800;
    line-height: 1.1;
}
.mt-stat span {
    font-size: 11.5px;
    opacity: .75;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.mt-section {
    padding: 80px 0 60px;
    background: #FAF6EC;
    position: relative;
    overflow: hidden;
}
.mt-section-dark {
    background: linear-gradient(160deg, #0A1F44 0%, #132E5C 100%);
    color: #FAF6EC;
}
.mt-section-dark .mt-section-head h2 { color: #FAF6EC; }
.mt-section-dark .mt-section-head p { color: rgba(250,246,236,.75); }

.mt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.mt-section-head {
    text-align: center;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.mt-eyebrow {
    display: inline-block;
    background: rgba(201,162,39,.15);
    color: #C9A227;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(201,162,39,.3);
}
.mt-section-head h2 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0A1F44;
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin-bottom: 14px;
}
.mt-section-head h2 .accent { color: #C9A227; }
.mt-section-head p {
    font-size: 15.5px;
    color: #666;
    line-height: 1.7;
}

/* =========================================================
   CARROUSEL GÉNÉRIQUE
   ========================================================= */
.mt-carousel-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}

.mt-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.mt-carousel::-webkit-scrollbar { display: none; }

.mt-carousel-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFF;
    color: #0A1F44;
    border: 1.5px solid #E0D5B7;
    font-size: 22px;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    padding-bottom: 3px;
    box-shadow: 0 6px 20px rgba(10,31,68,.15);
    transition: background .2s, color .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt-carousel-nav:hover {
    background: #C9A227;
    color: #0A1F44;
    border-color: #C9A227;
    transform: translateY(-50%) scale(1.08);
}
.mt-carousel-nav.prev { left: 4px; }
.mt-carousel-nav.next { right: 4px; }

.mt-section-dark .mt-carousel-nav {
    background: rgba(250,246,236,.15);
    color: #FAF6EC;
    border-color: rgba(250,246,236,.3);
    backdrop-filter: blur(8px);
}
.mt-section-dark .mt-carousel-nav:hover {
    background: #C9A227;
    color: #0A1F44;
    border-color: #C9A227;
}

.mt-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    padding: 0 22px;
}
.mt-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E0D5B7;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.mt-carousel-dots button.active {
    background: #C9A227;
    transform: scale(1.3);
}
.mt-section-dark .mt-carousel-dots button { background: rgba(250,246,236,.3); }
.mt-section-dark .mt-carousel-dots button.active { background: #C9A227; }

/* =========================================================
   ÉTAPES (steps)
   ========================================================= */
.mt-step {
    flex: 0 0 auto;
    width: 340px;
    scroll-snap-align: start;
    background: #FFF;
    border-radius: 20px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid #E0D5B7;
    transition: transform .25s, box-shadow .25s;
}
.mt-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(10,31,68,.14);
}
.mt-step-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(201,162,39,.15), transparent 70%);
    border-radius: 50%;
}
.mt-step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #C9A227;
    line-height: 1;
    margin-bottom: 6px;
    opacity: .9;
}
.mt-step-icon {
    font-size: 34px;
    margin-bottom: 12px;
    display: block;
}
.mt-step h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #0A1F44;
    margin-bottom: 10px;
    line-height: 1.3;
}
.mt-step p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}
.mt-step-tag {
    display: inline-block;
    background: #F5EFE0;
    color: #0A1F44;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* =========================================================
   FEATURES
   ========================================================= */
.mt-feature {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
    background: rgba(250,246,236,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250,246,236,.12);
    border-radius: 20px;
    padding: 30px 26px;
    color: #FAF6EC;
    position: relative;
    overflow: hidden;
    transition: transform .25s, background .25s, border-color .25s;
}
.mt-feature:hover {
    transform: translateY(-6px);
    background: rgba(250,246,236,.1);
    border-color: rgba(201,162,39,.4);
}
.mt-feature-glow {
    position: absolute;
    top: -40px; left: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(201,162,39,.3), transparent 70%);
    border-radius: 50%;
    opacity: .6;
}
.mt-feature-icon {
    font-size: 34px;
    margin-bottom: 14px;
    display: block;
    position: relative;
}
.mt-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #C9A227;
    margin-bottom: 10px;
    position: relative;
}
.mt-feature p {
    font-size: 13.5px;
    line-height: 1.65;
    opacity: .88;
    position: relative;
}

/* =========================================================
   SÉCURITÉ
   ========================================================= */
.mt-sec-card {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
    background: #FFF;
    border: 1px solid #E0D5B7;
    border-radius: 20px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mt-sec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(10,31,68,.14);
    border-color: #C9A227;
}
.mt-sec-shield {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A1F44, #132E5C);
    color: #C9A227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(10,31,68,.25);
}
.mt-sec-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #0A1F44;
    margin-bottom: 10px;
}
.mt-sec-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}
.mt-sec-bar {
    height: 3px;
    background: #F5EFE0;
    border-radius: 2px;
    overflow: hidden;
}
.mt-sec-bar span {
    display: block;
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #C9A227, #f0d76d);
    border-radius: 2px;
    animation: secBar 2.5s ease-in-out infinite;
}
@keyframes secBar {
    0%, 100% { width: 40%; opacity: .6; }
    50%      { width: 95%; opacity: 1; }
}

/* =========================================================
   TAUX
   ========================================================= */
.mt-rate-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(201,162,39,.15), rgba(201,162,39,.05));
    border: 1px solid rgba(201,162,39,.3);
    border-radius: 20px;
    padding: 26px 24px;
    backdrop-filter: blur(10px);
    transition: transform .25s, border-color .25s;
}
.mt-rate-card:hover {
    transform: translateY(-6px);
    border-color: #C9A227;
}
.mt-rate-flags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.mt-rate-code {
    background: #C9A227;
    color: #0A1F44;
    padding: 5px 12px;
    border-radius: 8px;
    font-family: ui-monospace, monospace;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.mt-rate-arrow {
    color: #C9A227;
    font-size: 18px;
    font-weight: 700;
}
.mt-rate-value {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #FAF6EC;
    line-height: 1.3;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}
.mt-rate-value span {
    font-size: 12px;
    color: rgba(250,246,236,.6);
}
.mt-rate-value strong {
    font-size: 24px;
    font-weight: 800;
    color: #C9A227;
    margin: 0 4px;
}
.mt-rate-updated {
    font-size: 11px;
    color: rgba(250,246,236,.7);
    border-top: 1px solid rgba(201,162,39,.2);
    padding-top: 12px;
    letter-spacing: .3px;
}

/* =========================================================
   SUPPORT
   ========================================================= */
.mt-support-card {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    background: #FFF;
    border: 1px solid #E0D5B7;
    border-radius: 20px;
    padding: 30px 26px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mt-support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(10,31,68,.14);
    border-color: #C9A227;
}
.mt-support-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mt-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0A1F44, #132E5C);
    color: #C9A227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.mt-support-tag {
    background: #F5EFE0;
    color: #0A1F44;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.mt-support-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #0A1F44;
    margin-bottom: 10px;
}
.mt-support-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 18px;
}
.mt-support-mail {
    display: inline-block;
    color: #C9A227;
    font-weight: 600;
    font-size: 12.5px;
    text-decoration: none;
    word-break: break-all;
    padding: 8px 12px;
    border-radius: 8px;
    background: #FFF6E5;
    transition: background .15s;
}
.mt-support-mail:hover { background: #F0E1C0; }

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.mt-testimonial {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    background: rgba(250,246,236,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250,246,236,.12);
    border-radius: 20px;
    padding: 28px 26px 24px;
    color: #FAF6EC;
    position: relative;
    transition: transform .25s, border-color .25s;
}
.mt-testimonial:hover {
    transform: translateY(-6px);
    border-color: rgba(201,162,39,.4);
}
.mt-testimonial-quote {
    font-family: Georgia, serif;
    font-size: 72px;
    color: #C9A227;
    line-height: .8;
    position: absolute;
    top: 8px;
    right: 18px;
    opacity: .25;
}
.mt-testimonial-stars {
    font-size: 14px;
    color: #C9A227;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.mt-testimonial-body {
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 22px;
    opacity: .92;
    position: relative;
}
.mt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(250,246,236,.12);
    padding-top: 16px;
}
.mt-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A227, #f0d76d);
    color: #0A1F44;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 17px;
    flex: 0 0 auto;
}
.mt-testimonial-author strong {
    display: block;
    color: #FAF6EC;
    font-size: 14px;
    margin-bottom: 2px;
}
.mt-testimonial-author span {
    font-size: 11.5px;
    color: rgba(250,246,236,.65);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.mt-cta-final {
    padding: 80px 22px;
    background: linear-gradient(135deg, #0A1F44 0%, #132E5C 100%);
    color: #FAF6EC;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mt-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,162,39,.15), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
    50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.mt-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.mt-cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin: 12px 0 16px;
    letter-spacing: -0.6px;
    line-height: 1.2;
}
.mt-cta-inner h2 .accent { color: #C9A227; }
.mt-cta-inner p {
    font-size: 16px;
    opacity: .88;
    line-height: 1.7;
    margin-bottom: 28px;
}
.mt-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.mt-cta-buttons .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform .25s;
}
.mt-cta-buttons a:hover .arrow { transform: translateX(4px); }

.mt-cta-trust {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12.5px;
    opacity: .75;
    padding-top: 22px;
    border-top: 1px solid rgba(250,246,236,.15);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .mt-hero-title { font-size: 34px; }
    .mt-hero-sub { font-size: 15px; }
    .mt-hero-ctrl { width: 42px; height: 42px; font-size: 22px; }
    .mt-hero-ctrl.prev { left: 10px; }
    .mt-hero-ctrl.next { right: 10px; }
    .mt-hero-dots { bottom: 110px; }

    .mt-section-head h2 { font-size: 26px; }
    .mt-section-head p { font-size: 14px; }

    .mt-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .mt-stat strong { font-size: 22px; }

    .mt-step, .mt-feature, .mt-sec-card,
    .mt-rate-card, .mt-support-card, .mt-testimonial {
        width: 280px;
    }

    .mt-carousel-nav { display: none; }

    .mt-cta-inner h2 { font-size: 24px; }
    .mt-cta-inner p { font-size: 14px; }
}

@media (max-width: 640px) {
    .mt-hero { min-height: 82vh; }
    .mt-hero-track { min-height: 82vh; }
    .mt-hero-slide { padding: 70px 18px 100px; }
    .mt-hero-title { font-size: 26px; }
    .mt-hero-sub { font-size: 13.5px; margin-bottom: 24px; }
    .mt-hero-actions .btn-lg { padding: 12px 18px; font-size: 13.5px; }
    .mt-hero-scroll-hint { display: none; }
    .mt-hero-dots { bottom: 90px; }

    .mt-section { padding: 60px 0 40px; }

    .mt-step, .mt-feature, .mt-sec-card,
    .mt-rate-card, .mt-support-card, .mt-testimonial {
        width: 240px;
        padding: 22px 20px;
    }
    .mt-step-num { font-size: 34px; }

    .mt-cta-final { padding: 60px 18px; }
    .mt-cta-inner h2 { font-size: 22px; }
    .mt-cta-trust { flex-direction: column; align-items: center; gap: 8px; }
}

/* =========================================================
   HERO QUICKLINKS (sous les CTA)
   ========================================================= */
.mt-hero-quicklinks {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(250,246,236,.15);
}
.mt-hero-quicklinks a {
    color: #FAF6EC;
    text-decoration: none;
    font-size: 12.5px;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(250,246,236,.08);
    border: 1px solid rgba(250,246,236,.18);
    transition: background .2s, border-color .2s, color .2s;
    backdrop-filter: blur(6px);
}
.mt-hero-quicklinks a:hover {
    background: rgba(201,162,39,.2);
    border-color: #C9A227;
    color: #C9A227;
}

/* =========================================================
   SERVICE LIST (dans les cartes "services")
   ========================================================= */
.mt-service-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 16px;
}
.mt-service-list li {
    font-size: 12.5px;
    color: #555;
    padding: 3px 0;
    line-height: 1.5;
}
.mt-service-cta {
    display: inline-block;
    color: #0A1F44;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    background: #F5EFE0;
    transition: background .15s, color .15s;
}
.mt-service-cta:hover {
    background: #C9A227;
    color: #0A1F44;
}
.mt-service-cta span {
    display: inline-block;
    margin-left: 4px;
    transition: transform .2s;
}
.mt-service-cta:hover span { transform: translateX(3px); }

/* =========================================================
   CATÉGORIES CAROUSEL
   ========================================================= */
.mt-cat-card {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: start;
    background: #FFF;
    border: 1.5px solid #E0D5B7;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    text-decoration: none;
    color: #0A1F44;
    transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
    position: relative;
    overflow: hidden;
}
.mt-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(10,31,68,.14);
    border-color: #C9A227;
    background: linear-gradient(135deg, #FFF, #FFF6E5);
}
.mt-cat-icon {
    font-size: 38px;
    margin-bottom: 10px;
    display: block;
}
.mt-cat-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}
.mt-cat-arrow {
    font-size: 16px;
    color: #C9A227;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s, transform .2s;
}
.mt-cat-card:hover .mt-cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   PRODUITS VEDETTE
   ========================================================= */
.mt-prod-card {
    flex: 0 0 auto;
    width: 240px;
    scroll-snap-align: start;
    background: #FAF6EC;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.mt-prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(10,31,68,.2);
}
.mt-prod-img {
    position: relative;
    aspect-ratio: 1;
    background: #F5EFE0;
    overflow: hidden;
}
.mt-prod-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.mt-prod-card:hover .mt-prod-img img { transform: scale(1.06); }
.mt-prod-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #C9A227;
    background: linear-gradient(135deg, #F5EFE0, #FAF6EC);
}
.mt-prod-tag {
    position: absolute;
    top: 10px; left: 10px;
    background: #C9A227;
    color: #0A1F44;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.mt-prod-body {
    padding: 14px 16px 16px;
}
.mt-prod-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FAF6EC;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}
.mt-prod-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #C9A227;
}
.mt-prod-price span {
    font-size: 11px;
    color: rgba(250,246,236,.7);
    margin-left: 4px;
    font-weight: 500;
}

/* =========================================================
   FILTRES CATALOGUE
   ========================================================= */
.market-cat-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px 22px;
    background: #FFF;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(10,31,68,.06);
}
.market-cat-input,
.market-cat-select {
    padding: 10px 14px;
    border: 1.5px solid #E0D5B7;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    background: #FFF;
    color: #2E2E2E;
}
.market-cat-input { flex: 1; min-width: 180px; }
.market-cat-input:focus,
.market-cat-select:focus {
    outline: none;
    border-color: #0A1F44;
    box-shadow: 0 0 0 3px rgba(10,31,68,.08);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .mt-hero-quicklinks { gap: 6px; margin-top: 22px; padding-top: 18px; }
    .mt-hero-quicklinks a { font-size: 11.5px; padding: 6px 10px; }
    .mt-cat-card { width: 130px; padding: 18px 12px; }
    .mt-cat-icon { font-size: 30px; }
    .mt-prod-card { width: 200px; }
}

@media (max-width: 640px) {
    .mt-hero-quicklinks { display: none; }
    .mt-cat-card { width: 110px; padding: 14px 10px; }
    .mt-cat-icon { font-size: 26px; }
    .mt-cat-name { font-size: 11px; }
    .mt-prod-card { width: 170px; }
    .mt-prod-body { padding: 10px; }
    .mt-prod-body h4 { font-size: 12.5px; min-height: 32px; }
    .mt-prod-price { font-size: 15px; }
    .market-cat-filters { padding: 14px; gap: 8px; }
    .market-cat-input { min-width: 100%; }
}