/* =========================================
   BANKS PAGE
   file: /assets/css/banks.css
   Scoped uniquement à .banks-page
========================================= */

/* =========================
   RESET LOCAL
========================= */
.banks-page,
.banks-page *,
.banks-page *::before,
.banks-page *::after {
    box-sizing: border-box;
}

.banks-page img,
.banks-page svg {
    max-width: 100%;
    display: block;
}

/* =========================
   TOKENS
========================= */
html,
body {
    overflow-x: hidden;
}

.banks-page {
    --banks-bg:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.96), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(153, 246, 228, 0.42), transparent 26%),
        radial-gradient(circle at 50% 82%, rgba(20, 184, 166, 0.16), transparent 24%),
        linear-gradient(135deg, #f0fdfa 0%, #e6f7f4 36%, #edf6f4 68%, #dff4f0 100%);

    --banks-text: #0f172a;
    --banks-title: #091b57;
    --banks-muted: #64748b;
    --banks-line: rgba(15, 23, 42, 0.10);

    --banks-surface: rgba(255, 255, 255, 0.80);
    --banks-surface-strong: rgba(255, 255, 255, 0.92);

    --banks-primary: #0f766e;
    --banks-primary-2: #14b8a6;
    --banks-accent: #0f766e;

    --banks-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
    --banks-shadow-card: 0 24px 60px rgba(15, 23, 42, 0.10);
    --banks-shadow-btn: 0 14px 34px rgba(15, 118, 110, 0.22);

    min-height: 100vh;
    color: var(--banks-text);
    background: var(--banks-bg);
    overflow-x: hidden;
}

/* =========================
   MAIN
========================= */
.banks-page .banks-main {
    position: relative;
    padding-top: 108px;
    padding-bottom: 84px;
}

.banks-page .banks-main .container {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================
   SHELL
========================= */
.banks-page .banks-hero {
    padding: 30px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

/* =========================
   HEADER
========================= */
.banks-page .banks-header {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 28px;
}

.banks-page .banks-badge {
    width: fit-content;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #065f46 0%, #059669 55%, #10b981 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.32), 0 0 0 3px rgba(5, 150, 105, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.20);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    position: relative;
    overflow: hidden;
}
.banks-page .banks-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    left: -80%;
    animation: banks-badge-shimmer 3.5s ease-in-out infinite;
}
@keyframes banks-badge-shimmer {
    0%   { left: -80%; }
    55%, 100% { left: 120%; }
}
.banks-page .banks-badge .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7b7;
    flex-shrink: 0;
    animation: banks-badge-pulse 2s ease-in-out infinite;
}
@keyframes banks-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.65); }
    50%       { box-shadow: 0 0 0 5px rgba(110, 231, 183, 0); }
}
.banks-page .banks-badge .pill-check {
    flex-shrink: 0;
    display: block;
}

.banks-page .banks-title {
    margin: 0 0 14px;
    color: var(--banks-title);
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-color: #0f766e;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.banks-page .banks-intro {
    margin: 0 auto;
    color: var(--banks-muted);
    font-size: 18px;
    line-height: 2;
}

/* =========================
   PARTNERS
========================= */
.banks-page .banks-partners {
    margin: 0 0 24px;
    padding: 24px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.banks-page .banks-partners-head {
    text-align: center;
    margin-bottom: 18px;
}

.banks-page .bk-kicker {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.10), rgba(20, 184, 166, 0.16));
    color: #0f766e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.banks-page .banks-partners-title {
    margin: 0;
    text-align: center;
    color: var(--banks-title);
    font-size: 24px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #0f766e;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.banks-page .banks-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.banks-page .banks-logo-box {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.banks-page .banks-logo-box img {
    width: auto;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
}

.banks-page .banks-logo-box span {
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
}

/* =========================
   GRID CARDS
========================= */
.banks-page .banks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.banks-page .banks-card {
    padding: 24px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: transform .22s ease, box-shadow .22s ease;
}

.banks-page .banks-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.banks-page .banks-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
}

/* Icon color variants */
.banks-page .bki-navy {
    background: linear-gradient(135deg, rgba(6, 48, 44, 0.11), rgba(15, 118, 110, 0.17));
    color: #0f766e;
}
.banks-page .bki-indigo {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.11), rgba(20, 184, 166, 0.17));
    color: #4338ca;
}
.banks-page .bki-green {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.11), rgba(16, 185, 129, 0.17));
    color: #059669;
}
.banks-page .bki-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.11), rgba(251, 191, 36, 0.17));
    color: #b45309;
}
.banks-page .bki-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.11), rgba(45, 212, 191, 0.17));
    color: #0f766e;
}

.banks-page .banks-card-title {
    margin: 0 0 12px;
    color: var(--banks-title);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #16a34a;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.banks-page .banks-services-head {
    text-align: center;
    margin-bottom: 20px;
}

.banks-page .banks-services-title {
    margin: 0;
    color: var(--banks-title);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #0f766e;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.banks-page .banks-services-sub {
    margin: 8px 0 0;
    color: var(--banks-muted);
    font-size: 15px;
    line-height: 1.7;
}

.banks-page .banks-card-text {
    margin: 0 0 10px;
    color: var(--banks-muted);
    font-size: 15px;
    line-height: 1.9;
}

.banks-page .banks-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.banks-page .banks-list li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
}

.banks-page .banks-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--banks-accent), var(--banks-primary-2));
}

[dir="ltr"] .banks-page .banks-list li {
    padding-right: 0;
    padding-left: 20px;
}

[dir="ltr"] .banks-page .banks-list li::before {
    right: auto;
    left: 0;
}

/* Highlight badge inside card */
.banks-page .banks-card-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,128,55,.07), rgba(34,193,195,.06));
    border: 1px solid rgba(0,128,55,.18);
}

.banks-page .banks-card-highlight__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #008037, #22c1c3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banks-page .banks-card-highlight__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.banks-page .banks-card-highlight__body strong {
    font-size: 14px;
    font-weight: 900;
    color: #005c28;
}

.banks-page .banks-card-highlight__body span {
    font-size: 13px;
    color: #475569;
    line-height: 1.7;
}

/* =========================
   BENEFITS
========================= */
.banks-page .banks-benefits {
    margin-top: 28px;
    padding: 26px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

.banks-page .banks-benefits-head {
    text-align: center;
    margin-bottom: 20px;
}

.banks-page .banks-benefits-title {
    margin: 0;
    color: var(--banks-title);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #0f766e;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.banks-page .banks-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.banks-page .banks-benefit {
    padding: 24px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.banks-page .banks-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.09);
}

.banks-page .banks-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.banks-page .banks-benefit h3 {
    margin: 0 0 8px;
    color: var(--banks-title);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.banks-page .banks-benefit p {
    margin: 0;
    color: var(--banks-muted);
    font-size: 15px;
    line-height: 1.9;
}

/* =========================
   CTA PREMIUM
========================= */
.banks-page .bk-cta-premium {
    margin-top: 24px;
    border-radius: 34px;
    background: linear-gradient(135deg, #06302c 0%, #0f766e 55%, #0f766e 100%);
    overflow: hidden;
    position: relative;
}

.banks-page .bk-cta-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
                radial-gradient(circle at 80% 20%, rgba(199, 210, 254, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.banks-page .bk-cta-inner {
    position: relative;
    padding: 54px 40px;
    text-align: center;
    color: #ffffff;
}

.banks-page .bk-cta-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.banks-page .bk-cta-inner h2 {
    color: #ffffff;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    margin: 0 0 14px;
}

.banks-page .bk-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.9;
}

.banks-page .bk-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.banks-page .bk-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    background: #ffffff;
    color: #0f766e;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.banks-page .bk-cta-btn-primary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.banks-page .bk-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.banks-page .bk-cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================
   REVEAL
========================= */
.banks-page .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.60s ease, transform 0.60s ease;
}

.banks-page .reveal.revealed {
    opacity: 1;
    transform: none;
}

/* =========================
   FOOTER PREMIUM
========================= */
.banks-page .footer {
    margin-top: 34px;
    padding: 0 0 18px;
    background: transparent;
}

.banks-page .footer .foot {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 250, 252, 0.90));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.banks-page .banks-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.banks-page .banks-footer-brand {
    min-width: 0;
    flex: 1 1 auto;
}

.banks-page .banks-footer-brand b {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
}

.banks-page .banks-footer-brand .muted {
    margin: 0;
    color: var(--banks-muted);
    font-size: 15px;
    line-height: 1.8;
}

.banks-page .banks-footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 0 1 auto;
}

.banks-page .banks-copy {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    white-space: nowrap;
}

.banks-page .footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.banks-page .footer-socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    color: #0f172a;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.banks-page .footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.banks-page .footer-socials a[aria-label="تيك توك"] {
    color: #111111;
    background: #ffffff;
}

.banks-page .footer-socials a[aria-label="تيك توك"]:hover {
    background: #111111;
    color: #ffffff;
}

.banks-page .footer-socials a[aria-label="إنستغرام"] {
    color: #E4405F;
    background: #ffffff;
}

.banks-page .footer-socials a[aria-label="إنستغرام"]:hover {
    color: #ffffff;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.banks-page .footer-socials a[aria-label="فيسبوك"] {
    color: #1877F2;
    background: #ffffff;
}

.banks-page .footer-socials a[aria-label="فيسبوك"]:hover {
    background: #1877F2;
    color: #ffffff;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.banks-page .whatsapp-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    left: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 9999;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #25d366 0 58%, rgba(255, 255, 255, 0.30) 59% 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.28),
        0 0 0 10px rgba(37, 211, 102, 0.14);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.banks-page .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
}

html[lang="fr"] .banks-page .whatsapp-float {
    left: max(18px, env(safe-area-inset-left));
    right: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .banks-page .banks-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .banks-page .banks-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .banks-page .banks-main {
        padding-top: 94px;
        padding-bottom: 74px;
    }

    .banks-page .banks-main .container {
        width: min(100%, calc(100% - 24px));
    }

    .banks-page .banks-hero {
        padding: 18px 14px;
        border-radius: 24px;
    }

    .banks-page .banks-title {
        font-size: clamp(28px, 9vw, 44px);
    }

    .banks-page .banks-intro {
        font-size: 15px;
        line-height: 1.9;
    }

    .banks-page .banks-partners {
        padding: 18px 14px;
        border-radius: 22px;
    }

    .banks-page .banks-grid {
        grid-template-columns: 1fr;
    }

    .banks-page .banks-card {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .banks-page .banks-benefits {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .banks-page .banks-benefits-grid {
        grid-template-columns: 1fr;
    }

    .banks-page .bk-cta-premium {
        border-radius: 24px;
    }

    .banks-page .bk-cta-inner {
        padding: 38px 24px;
    }

    .banks-page .footer .foot {
        width: min(100%, calc(100% - 24px));
        padding: 20px 18px;
        border-radius: 22px;
    }

    .banks-page .banks-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .banks-page .banks-footer-meta {
        width: 100%;
        align-items: flex-start;
    }

    .banks-page .whatsapp-float {
        right: max(14px, env(safe-area-inset-right));
        left: auto;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 68px;
        height: 68px;
    }

    html[lang="fr"] .banks-page .whatsapp-float {
        left: max(14px, env(safe-area-inset-left));
        right: auto;
    }
}

@media (max-width: 560px) {
    .banks-page .banks-main {
        padding-top: 88px;
        padding-bottom: 66px;
    }

    .banks-page .banks-main .container {
        width: min(100%, calc(100% - 20px));
    }

    .banks-page .banks-hero {
        padding: 14px 12px;
        border-radius: 20px;
    }

    .banks-page .banks-badge {
        font-size: 11px;
        padding: 8px 14px 8px 10px;
        gap: 8px;
        box-shadow: 0 6px 18px rgba(5, 150, 105, 0.28), 0 0 0 2px rgba(5, 150, 105, 0.10);
    }

    .banks-page .banks-title {
        font-size: 26px;
        line-height: 1.14;
    }

    .banks-page .banks-intro {
        font-size: 14px;
        line-height: 1.8;
    }

    .banks-page .banks-partners-title {
        font-size: 20px;
    }

    .banks-page .banks-logo-box {
        min-width: 100%;
        padding: 16px 14px;
        border-radius: 18px;
    }

    .banks-page .banks-card-title {
        font-size: 20px;
    }

    .banks-page .banks-card-text,
    .banks-page .banks-list li,
    .banks-page .banks-benefit p {
        font-size: 14px;
        line-height: 1.8;
    }

    .banks-page .banks-benefits-title {
        font-size: 22px;
    }

    .banks-page .banks-benefit h3 {
        font-size: 18px;
    }

    .banks-page .banks-cta p {
        font-size: 15px;
    }

    .banks-page .banks-cta-btn {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
        font-size: 15px;
    }

    .banks-page .footer {
        margin-top: 24px;
        padding-bottom: 14px;
    }

    .banks-page .footer .foot {
        width: min(100%, calc(100% - 20px));
        padding: 16px 14px;
        border-radius: 18px;
    }

    .banks-page .banks-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .banks-page .banks-footer-brand {
        width: 100%;
    }

    .banks-page .banks-footer-brand b {
        font-size: 16px;
    }

    .banks-page .banks-footer-meta {
        width: 100%;
        align-items: center;
        gap: 8px;
    }

    .banks-page .banks-copy {
        width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 13px;
    }

    .banks-page .footer-socials {
        width: 100%;
        justify-content: center;
    }

    .banks-page .footer-socials a {
        width: 36px;
        height: 36px;
    }

    .banks-page .whatsapp-float {
        right: max(12px, env(safe-area-inset-right));
        left: auto;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 64px;
        height: 64px;
    }

    html[lang="fr"] .banks-page .whatsapp-float {
        left: max(12px, env(safe-area-inset-left));
        right: auto;
    }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {

    .banks-page .banks-card,
    .banks-page .banks-benefit,
    .banks-page .bk-cta-btn-primary,
    .banks-page .bk-cta-btn-ghost,
    .banks-page .footer-socials a,
    .banks-page .whatsapp-float {
        transition: none !important;
    }

    .banks-page .reveal {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
}