.mt-footer {
    background: #185FA5;
    border-radius: 16px;
    padding: 40px 36px 28px;
    font-family: "DM Sans", system-ui, sans-serif;
    color: #CBD5E1;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}
.mt-footer *, .mt-footer *::before, .mt-footer *::after { box-sizing: border-box; }

/* grille colonnes */
.mt-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 28px;
}

/* colonne logo */
.mt-footer-brand-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}
.mt-footer-brand-name span { color: #E6F1FB; }
.mt-footer-brand-base {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    margin: 0 0 16px;
}
.mt-footer-ansm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 99px;
    padding: 4px 12px;
}
.mt-footer-ansm::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #9FE1CB;
    animation: mt-blink 1.6s infinite;
}
@keyframes mt-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* libellé de colonne */
.mt-footer-col-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

/* liste liens */
.mt-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mt-footer-menu li { margin: 0; padding: 0; }
.mt-footer-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    padding: 6px 9px;
    border-radius: 7px;
    transition: background .15s, color .15s;
    line-height: 1.3;
}
.mt-footer-menu li a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    flex-shrink: 0;
    opacity: .6;
    transition: opacity .15s;
}
.mt-footer-menu li a:hover,
.mt-footer-menu li.current-menu-item a {
    color: #fff;
    background: rgba(255,255,255,.12);
}
.mt-footer-menu li a:hover::before,
.mt-footer-menu li.current-menu-item a::before { opacity: 1; background: #fff; }

/* couleurs selon profil */
.mt-footer-menu--patient li a::before      { background: #9FE1CB; }
.mt-footer-menu--patient li a:hover,
.mt-footer-menu--patient li.current-menu-item a {
    background: rgba(255,255,255,.12);
}
.mt-footer-menu--pro li a::before          { background: #FAC775; }
.mt-footer-menu--pro li a:hover,
.mt-footer-menu--pro li.current-menu-item a {
    background: rgba(255,255,255,.12);
}
.mt-footer-menu--legal li a::before        { background: rgba(255,255,255,.4); }
.mt-footer-menu--legal li a:hover          { background: rgba(255,255,255,.12); }

/* barre copyright */
.mt-footer-bar {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.mt-footer-copy { font-size: 12px; color: rgba(255,255,255,.5); }
.mt-footer-bar-links { display: flex; gap: 16px; }
.mt-footer-bar-links a {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}
.mt-footer-bar-links a:hover { color: #fff; }

/* responsive */
@media (max-width: 768px) {
    .mt-footer { padding: 28px 20px 20px; border-radius: 10px; }
    .mt-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .mt-footer-grid { grid-template-columns: 1fr; gap: 20px; }
}