/* ============================================
   BGFIBank - Ouverture de compte
   Styles CSS v2.1
   ============================================ */
/* Variables */
:root {
    --bgfi-blue: #003666;
    --bgfi-blue-dark: #002244;
    --bgfi-olive: #a8b088;
    --bgfi-olive-light: #c2c9ab;
    --bgfi-cyan: #0d91d0;
}
/* Base */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
    background: linear-gradient(160deg, var(--bgfi-blue-dark) 0%, var(--bgfi-blue) 100%);
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}
/* ============================================
   Header / Navbar
   ============================================ */
.navbar {
    background: transparent !important;
    padding: 1.5rem 0;
}
.logo-wrapper {
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--bgfi-olive);
    transition: all 0.3s ease;
}
.logo-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--bgfi-olive-light);
}
.logo-wrapper img {
    height: 55px;
    width: auto;
}
/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    padding: 2rem 0 3rem;
}
.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.header-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.btn-logout {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.user-info .user-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}
.user-info .user-dossier {
    font-size: 0.8rem;
    color: var(--bgfi-olive-light);
}
.text-olive {
    color: var(--bgfi-olive-light);
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
}
/* ============================================
   Trust Badges
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0.7;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.trust-badge i {
    color: var(--bgfi-olive);
}
/* ============================================
   Account Cards
   ============================================ */
.account-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.account-card:hover {
    transform: translateY(-8px);
    border-color: var(--bgfi-olive);
    box-shadow: 0px 5px 3px 0px rgb(174, 182, 145), 0 0 30px rgba(168, 176, 136, 0.15);
}
.account-card.selected {
    border: 2px solid var(--bgfi-olive);
    box-shadow: 0 0 0 4px rgba(168, 176, 136, 0.2), 0 20px 40px rgba(0, 0, 0, 0.2);
}
.card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bgfi-blue-dark);
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-img-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
    pointer-events: none;
}
.selection-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--bgfi-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 2;
}
.account-card.selected .selection-check {
    opacity: 1;
    transform: scale(1);
}
.selection-check i {
    color: var(--bgfi-blue);
    font-size: 14px;
}
.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-icon i {
    color: var(--bgfi-blue);
    font-size: 1.1rem;
}
.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.card-link {
    color: var(--bgfi-olive);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.card-link:hover {
    color: var(--bgfi-olive-light);
    gap: 10px;
}
/* ============================================
   Carousel
   ============================================ */
.cards-carousel-container {
    position: relative;
    overflow: hidden;
}
.cards-carousel-wrapper {
    overflow: hidden;
    padding: 10px 0;
}
.cards-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cards-carousel .card-item {
    flex: 0 0 100%;
    max-width: 100%;
}
/* Mention mobile : signale qu'il y a plusieurs cartes */
.carousel-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.carousel-hint i {
    color: var(--bgfi-olive);
    font-size: 1rem;
}
/* Visible uniquement quand le carrousel passe en mode glissant,
   au même seuil que isSliderMode() côté JavaScript. */
@media (max-width: 991.98px) {
    .carousel-hint {
        display: flex;
    }
}
/* Hide dots by default on large screens */
.carousel-dots {
    display: none;
}
/* Carousel dot styles (shared) */
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 176, 136, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.carousel-dot.active {
    background: var(--bgfi-olive);
    transform: scale(1.2);
}
.carousel-dot:hover {
    background: rgba(168, 176, 136, 0.6);
}
/* ============================================
   DESKTOP: 3 cards visible, no slider
   ============================================ */
@media (min-width: 992px) {
    .cards-carousel-container {
        padding-bottom: 0;
    }
    .cards-carousel .card-item {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
    .carousel-dots {
        display: none !important;
    }
}
/* ============================================
   TABLET: Single item slider with dots
   ============================================ */
@media (min-width: 768px) and (max-width: 991px) {
    .cards-carousel-container {
        padding-bottom: 2.5rem;
    }
    .cards-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    .cards-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    .cards-carousel {
        gap: 0;
        padding: 0;
    }
    .cards-carousel .card-item {
        scroll-snap-align: center;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
    }
    .carousel-dots {
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
}
/* ============================================
   MOBILE: Single item slider with dots
   ============================================ */
@media (max-width: 767px) {
    .cards-carousel-container {
        padding-bottom: 2.5rem;
    }
    .cards-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    .cards-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    .cards-carousel {
        gap: 0;
        padding: 0;
    }
    .cards-carousel .card-item {
        scroll-snap-align: center;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
    }
    .carousel-dots {
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
}
/* Carousel Controls */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--bgfi-olive);
    border: none;
    border-radius: 50%;
    color: var(--bgfi-blue);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.carousel-nav-btn:hover {
    background: var(--bgfi-olive-light);
    transform: translateY(-50%) scale(1.1);
}
.carousel-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
}
.carousel-nav-btn.prev {
    left: -10px;
}
.carousel-nav-btn.next {
    right: -10px;
}
.carousel-nav-btn.hidden {
    display: none;
}
/* Carousel Indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}
.carousel-indicators-custom.hidden {
    display: none;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.carousel-indicator.active {
    background: var(--bgfi-olive);
    transform: scale(1.2);
}
.carousel-indicator:hover {
    background: rgba(168, 176, 136, 0.7);
}
/* ============================================
   Actions Bar (CTA)
   ============================================ */
.actions-bar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-top: 2.5rem;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
}
@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        max-width: none;
        width: auto;
    }
}
.btn-primary-bgfi {
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border: none;
    color: var(--bgfi-blue);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(168, 176, 136, 0.3);
}
.btn-primary-bgfi:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 176, 136, 0.4);
    color: var(--bgfi-blue);
}
.btn-outline-bgfi {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-outline-bgfi:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}
/* ============================================
   Cookie Consent
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    overflow: hidden;
    animation: slideInLeft 0.4s ease-out;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.cookie-header {
    background: var(--bgfi-blue);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-header h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cookie-header .btn-minimize {
    background: transparent;
    border: none;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}
.cookie-header .btn-minimize:hover {
    opacity: 1;
}
.cookie-body {
    padding: 1.25rem;
}
.cookie-body p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
}
.cookie-option:last-child {
    border-bottom: none;
}
.cookie-option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #333;
}
.cookie-option-label i {
    color: var(--bgfi-olive);
    font-size: 1rem;
}
.form-check-input:checked {
    background-color: var(--bgfi-olive);
    border-color: var(--bgfi-olive);
}
.cookie-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.cookie-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}
.btn-accept-all {
    background: var(--bgfi-olive);
    border: none;
    color: var(--bgfi-blue);
    font-weight: 600;
}
.btn-accept-all:hover {
    background: var(--bgfi-olive-light);
    color: var(--bgfi-blue);
}
.btn-save-preferences {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}
.btn-save-preferences:hover {
    background: #f5f5f5;
    color: #333;
}
/* Minimized Cookie Button */
.cookie-minimized-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: var(--bgfi-olive);
    border: none;
    border-radius: 50%;
    color: var(--bgfi-blue);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cookie-minimized-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background: var(--bgfi-olive-light);
}
.cookie-minimized-btn.visible {
    display: flex;
}
@media (max-width: 767.98px) {
    .cookie-consent {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
        max-width: none;
    }
    .cookie-minimized-btn {
        bottom: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
    }
}
/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 1.25rem 0;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}
@media (max-width: 767.98px) {
    .footer {
        padding-bottom: 5rem;
    }
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.7rem;
}
.footer a:hover {
    color: var(--bgfi-olive);
}
.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}
.footer-dev a {
    color: var(--bgfi-olive);
    font-weight: 600;
}
.footer-recaptcha {
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}
.footer-recaptcha a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
}
.footer-recaptcha a:hover {
    color: var(--bgfi-olive-light);
}
/* ============================================
   Back Button
   ============================================ */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}
.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bgfi-olive-light);
    border-color: rgba(168, 176, 136, 0.3);
}
.back-button i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}
.back-button:hover i {
    transform: translateX(-3px);
}
/* ============================================
   Animations
   ============================================ */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================
   Mobile Adjustments
   ============================================ */
@media (max-width: 767.98px) {
    .navbar {
        padding: 1rem 0;
    }
    .logo-wrapper {
        padding: 0.6rem 1.25rem;
    }
    .logo-wrapper img {
        height: 45px;
    }
    .hero-section {
        padding: 1.5rem 0 2rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .card-img-wrapper {
        height: 160px;
    }
    .btn-primary-bgfi,
    .btn-outline-bgfi {
        width: 100%;
        padding: 0.7rem 1.5rem;
    }
    .carousel-nav-btn {
        display: none;
    }
    .trust-badges {
        gap: 1rem;
    }
    .trust-badge {
        font-size: 0.75rem;
    }
}
/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    font-size: 0.85rem;
}
.breadcrumb-custom li {
    display: flex;
    align-items: center;
}
.breadcrumb-custom li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}
.breadcrumb-custom li a:hover {
    color: var(--bgfi-olive);
}
.breadcrumb-custom li a i {
    font-size: 1rem;
}
.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}
.breadcrumb-custom li.active {
    color: rgba(255, 255, 255, 0.9);
}
/* ============================================
   Go to Top Button
   ============================================ */
.go-to-top {
    position: fixed;
    bottom: 100px; /* Raised to avoid reCAPTCHA badge */
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border: none;
    border-radius: 50%;
    color: var(--bgfi-blue-dark);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.go-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767.98px) {
    .go-to-top {
        bottom: 90px; /* Raised for mobile reCAPTCHA */
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
/* ===== Privacy Settings Button ===== */
.privacy-settings-btn {
    position: fixed;
    bottom: 100px; /* Aligned with go-to-top */
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--bgfi-blue-dark);
    border: 2px solid var(--bgfi-olive);
    border-radius: 50%;
    color: var(--bgfi-olive);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.privacy-settings-btn:hover {
    background: var(--bgfi-olive);
    color: var(--bgfi-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(168, 176, 136, 0.4);
}
@media (max-width: 767.98px) {
    .privacy-settings-btn {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}
/* ===== Premium Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #001a33 0%, #003666 50%, #001a33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    margin-bottom: 2rem;
    animation: pulse-logo 2s ease-in-out infinite;
}
.loader-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(168, 176, 136, 0.3));
}
@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}
.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--bgfi-olive);
    animation: spin 1.2s linear infinite;
}
.spinner-ring:nth-child(1) {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    animation-duration: 1.2s;
}
.spinner-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    margin: -22.5px 0 0 -22.5px;
    border-top-color: var(--bgfi-olive-light);
    animation-duration: 0.9s;
    animation-direction: reverse;
}
.spinner-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-top-color: #fff;
    animation-duration: 0.6s;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Indicateur de chargement du bouton newsletter (réutilise @keyframes spin) */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}
.loader-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.loading-dots::after {
    content: '';
    animation: loading-dots 1.5s infinite;
}
@keyframes loading-dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}
/* ===== Welcome Video Modal ===== */
.welcome-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.welcome-video-modal.active {
    display: flex;
    opacity: 1;
}
.welcome-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.95);
    backdrop-filter: blur(10px);
}
.welcome-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: linear-gradient(180deg, #0d4f8b 0%, #003666 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 176, 136, 0.2);
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.2s;
}
@keyframes slideUp {
    to { transform: translateY(0); }
}
.welcome-video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.welcome-video-close:hover {
    background: var(--bgfi-olive);
    color: var(--bgfi-blue-dark);
    transform: rotate(90deg);
}
.welcome-video-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}
.welcome-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    color: var(--bgfi-blue-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.welcome-video-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.welcome-video-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}
.welcome-video-player {
    padding: 0 1.5rem;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.welcome-video-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-skip {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.btn-skip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
.dont-show-again {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
}
.dont-show-again input {
    accent-color: var(--bgfi-olive);
    width: 16px;
    height: 16px;
}
@media (max-width: 767.98px) {
    .welcome-video-container {
        max-width: 95%;
    }
    .welcome-video-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    .welcome-video-header h2 {
        font-size: 1.25rem;
    }
    .welcome-video-footer {
        flex-direction: column;
        text-align: center;
    }
    .btn-skip {
        width: 100%;
        justify-content: center;
    }
}
/* ===== Header LeClient.BGFI =====
   NB : ce bloc était présent DEUX FOIS à l'identique dans le fichier.
   La seconde occurrence a été supprimée. */
.dashboard-header {
    background: var(--bgfi-blue-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.header-logo {
    background: transparent;
    padding: 8px 0;
    border-radius: 0;
    text-decoration: none;
}
.header-logo img {
    height: 45px;
    width: auto;
}
.header-title {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.25rem;
}
.header-title .title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}
.header-title .subtitle {
    color: var(--bgfi-olive-light);
    font-size: 0.8rem;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.btn-header {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}
.btn-header-primary {
    background: var(--bgfi-olive);
    color: var(--bgfi-blue-dark);
    border: none;
}
.btn-header-primary:hover {
    background: var(--bgfi-olive-light);
    color: var(--bgfi-blue-dark);
}
.btn-header-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-header-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
/* ===== Newsletter Section ===== */
.newsletter-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(7, 53, 99, 0.4) 0%, rgba(0, 26, 51, 0.6) 100%);
    border: 1px solid rgba(168, 176, 136, 0.3);
    border-radius: 16px;
    text-align: center;
}
.newsletter-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.newsletter-title i {
    color: var(--bgfi-olive-light);
    margin-right: 0.5rem;
}
.newsletter-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}
/* CORRIGÉ : flex-wrap au lieu d'une media query.
   Le bouton passe sous le champ dès que la largeur ne suffit plus. */
.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 550px;
    margin: 0 auto 1.25rem;
}
.newsletter-form input[type="email"] {
    flex: 1 1 260px;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    /* 16px minimum : en dessous, iOS zoome à la mise au point du champ
       et décale toute la page. */
    font-size: 16px;
}
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--bgfi-olive);
    background: rgba(255, 255, 255, 0.12);
}
.newsletter-form button {
    flex: 1 1 100%;
    padding: 0.85rem 2rem;
    background: var(--bgfi-olive);
    color: var(--bgfi-blue-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.newsletter-form button:hover {
    background: var(--bgfi-olive-light);
    transform: translateY(-2px);
}
/* Dès 576px la place suffit : le bouton retrouve sa largeur naturelle. */
@media (min-width: 576px) {
    .newsletter-form button {
        flex: 0 0 auto;
    }
}
.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
}
.newsletter-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--bgfi-olive);
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.newsletter-consent label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    line-height: 1.5;
}
.newsletter-consent label a {
    color: var(--bgfi-olive-light);
    text-decoration: underline;
}
.newsletter-consent label a:hover {
    color: #fff;
}
.newsletter-success {
    display: none;
    padding: 1.25rem;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.35);
    border-radius: 10px;
    color: #a8e6a0;
    max-width: 550px;
    margin: 0 auto;
}
.newsletter-success i {
    margin-right: 0.5rem;
}
.newsletter-success.show {
    display: block;
}
.newsletter-error {
    display: none;
    padding: 0.75rem;
    color: #ff8080;
    font-size: 0.85rem;
    max-width: 550px;
    margin: 0.75rem auto 0;
}
.newsletter-error.show {
    display: block;
}
/* Message de retour après soumission (succès / erreur) */
.newsletter-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease-out;
}
.newsletter-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.35);
    color: #a8e6a0;
}
.newsletter-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #ff8080;
}
.newsletter-message i {
    font-size: 1.1rem;
    flex-shrink: 0;
}
/* ===== Responsive Header & Newsletter ===== */
@media (max-width: 767.98px) {
    .header-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    .header-left {
        flex-direction: column;
        text-align: center;
    }
    .header-title {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0.5rem;
    }
    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    .newsletter-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
}
/* Page contact */
.page-header {
    padding: 2rem 0 1rem;
}
.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.page-title .text-olive {
    color: var(--bgfi-olive-light);
}
.page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    line-height: 1.6;
}
/* Contact Sections */
.contact-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
@media (max-width: 991.98px) {
    .contact-sections {
        grid-template-columns: 1fr;
    }
}
.contact-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}
.contact-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--bgfi-olive);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(168, 176, 136, 0.3);
}
.contact-card-title i {
    font-size: 1.5rem;
}
/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-item:last-child {
    border-bottom: none;
}
.contact-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--bgfi-blue-dark);
}
.contact-info-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-info-content p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}
.contact-info-content a {
    color: var(--bgfi-olive-light);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-info-content a:hover {
    color: var(--bgfi-olive);
    text-decoration: underline;
}
/* Hours */
.hours-table {
    width: 100%;
    margin-top: 1rem;
}
.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hours-table tr:last-child {
    border-bottom: none;
}
.hours-table td {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}
.hours-table td:last-child {
    text-align: right;
    color: var(--bgfi-olive-light);
    font-weight: 500;
}
/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    background: var(--bgfi-olive);
    color: var(--bgfi-blue-dark);
    transform: translateY(-3px);
}
/* Newsletter de la page contact
   CORRIGÉ : cette règle était un .newsletter-form générique, elle
   ajoutait donc une marge haute au formulaire de la page d'accueil. */
.contact-card .newsletter-form {
    margin-top: 1rem;
}
.form-label-custom {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.form-control-custom {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--bgfi-olive);
    box-shadow: 0 0 0 3px rgba(168, 176, 136, 0.15);
    color: #fff;
}
.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.consent-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}
.consent-box .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    width: 1.25em;
    height: 1.25em;
}
.consent-box .form-check-input:checked {
    background-color: var(--bgfi-olive);
    border-color: var(--bgfi-olive);
}
.consent-box .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}
.consent-box .form-check-label a {
    color: var(--bgfi-olive-light);
}
.btn-subscribe {
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border: none;
    color: var(--bgfi-blue-dark);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}
.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 176, 136, 0.4);
    color: var(--bgfi-blue-dark);
}
.newsletter-benefits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-benefits h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}
.newsletter-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.35rem 0;
}
.newsletter-benefits li i {
    color: var(--bgfi-olive);
    font-size: 0.85rem;
}
@media (max-width: 767.98px) {
    .page-title {
        font-size: 1.75rem;
    }
    .page-description {
        font-size: 1rem;
    }
    .contact-card {
        padding: 1.5rem;
    }
}
.is-valid { border-color: var(--bgfi-olive) !important; }
.is-invalid { border-color: #dc3545 !important; }
.invalid-feedback { color: #ff6b6b; font-size: 0.85rem; margin-top: 0.25rem; }
/* `End Page contact */
/* Resource Cards */
.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.resource-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: block;
}
.resource-card:hover {
    transform: translateY(-8px);
    border-color: var(--bgfi-olive);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(168, 176, 136, 0.15);
}
.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s ease;
}
.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(5deg);
}
.resource-icon i {
    font-size: 2rem;
    color: var(--bgfi-blue-dark);
}
.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}
.resource-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.resource-card .card-link {
    color: var(--bgfi-olive);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}
.resource-card:hover .card-link {
    gap: 0.75rem;
}
/* `End Page ressources */
.legal-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0 3rem; }
.legal-card { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 1.75rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); text-decoration: none; display: block; }
.legal-card:hover { transform: translateY(-5px); border-color: var(--bgfi-olive); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(168, 176, 136, 0.1); }
.legal-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform 0.3s ease; }
.legal-card:hover .legal-icon { transform: scale(1.1); }
.legal-icon i { font-size: 1.5rem; color: var(--bgfi-blue-dark); }
.legal-card h3 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.legal-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 0.75rem; line-height: 1.5; }
.legal-card .card-link { color: var(--bgfi-olive); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s ease; }
.legal-card:hover .card-link { gap: 0.6rem; }
.info-banner { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 1.5rem; margin-top: 2rem; display: flex; align-items: flex-start; gap: 1rem; }
.info-banner i { font-size: 1.5rem; color: var(--bgfi-olive); flex-shrink: 0; }
.info-banner-content h4 { font-size: 1rem; font-weight: 600; color: var(--bgfi-olive-light); margin-bottom: 0.25rem; }
.info-banner-content p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin: 0; }
.info-banner-content a { color: var(--bgfi-olive); }
.last-update { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
.legal-content { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 2.5rem; margin: 2rem 0 3rem; }
.legal-content h2 { font-size: 1.25rem; font-weight: 600; color: var(--bgfi-olive); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(168, 176, 136, 0.3); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul, .legal-content ol { color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--bgfi-olive-light); text-decoration: underline; }
.pdf-download-section { text-align: left; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
/* NB : .download-pdf-btn était défini DEUX FOIS avec des valeurs
   différentes. Seule cette version-ci s'appliquait ; l'autre a été
   supprimée. */
.download-pdf-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #b6bd9b; color: #073563 !important; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; margin-top: 1rem; }
.download-pdf-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(182, 189, 155, 0.5); color: #073563 !important; background: #a8b088; }
.download-pdf-btn i { font-size: 1.1rem; }
.right-box { background: rgba(168, 176, 136, 0.15); border-left: 4px solid var(--bgfi-olive); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 1rem 0; }
.right-box h4 { color: var(--bgfi-olive-light); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.right-box p { margin-bottom: 0; font-size: 0.9rem; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.cookie-table th, .cookie-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.cookie-table th { background: rgba(168, 176, 136, 0.2); color: var(--bgfi-olive-light); font-weight: 600; font-size: 0.9rem; }
.cookie-table td { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; }
.info-block { background: rgba(168, 176, 136, 0.1); border-radius: 8px; padding: 1.25rem; margin: 1rem 0; }
.info-block p { margin-bottom: 0.35rem; }
.info-block p:last-child { margin-bottom: 0; }
/* Cartes « types de compte » — sélecteur qualifié par son conteneur :
   .account-type-card était défini ici ET dans la section Comparaison,
   avec des bordures et rayons différents ; la seconde écrasait celle-ci. */
.account-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0 3rem; }
.account-types .account-type-card { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 1.75rem; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: block; }
.account-types .account-type-card:hover { transform: translateY(-5px); border-color: var(--bgfi-olive); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); }
.account-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.account-icon i { font-size: 1.5rem; color: var(--bgfi-blue-dark); }
.account-types .account-type-card h3 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.account-types .account-type-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 0.75rem; line-height: 1.5; }
.account-types .account-type-card .card-link { color: var(--bgfi-olive); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.account-types .account-type-card:hover .card-link { gap: 0.6rem; }
.faq-container { margin: 2rem 0 3rem; }
.faq-category { margin-bottom: 2rem; }
.faq-category-title { font-size: 1.1rem; font-weight: 600; color: var(--bgfi-olive); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.faq-category-title i { font-size: 1.25rem; }
.accordion-item { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1) !important; border-radius: 12px !important; margin-bottom: 0.75rem; overflow: hidden; }
.accordion-button { background: transparent; color: #fff; font-weight: 500; padding: 1.25rem; border: none; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: rgba(168, 176, 136, 0.1); color: var(--bgfi-olive-light); }
.accordion-button::after { filter: brightness(0) invert(1); }
.accordion-button:not(.collapsed)::after { filter: brightness(0.7) sepia(1) hue-rotate(30deg) saturate(2); }
.accordion-body { background: transparent; color: rgba(255, 255, 255, 0.8); padding: 1rem 1.25rem 1.25rem; line-height: 1.6; }
.contact-banner { background: linear-gradient(135deg, rgba(168, 176, 136, 0.2), rgba(168, 176, 136, 0.1)); border: 1px solid var(--bgfi-olive); border-radius: 16px; padding: 2rem; text-align: center; margin-top: 2rem; }
.contact-banner h3 { color: var(--bgfi-olive-light); font-size: 1.25rem; margin-bottom: 0.5rem; }
.contact-banner p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1rem; }
.contact-banner .btn { background: var(--bgfi-olive); color: var(--bgfi-blue-dark); font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; }
.contact-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(168, 176, 136, 0.3); }
.videos-container { margin: 2rem 0 3rem; }
.video-category { margin-bottom: 2.5rem; }
.video-category-title { font-size: 1.1rem; font-weight: 600; color: var(--bgfi-olive); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.video-category-title i { font-size: 1.25rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.video-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; }
.video-card:hover { transform: translateY(-5px); border-color: var(--bgfi-olive); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); }
.video-thumbnail { position: relative; padding-top: 56.25%; background: var(--bgfi-blue-dark); overflow: hidden; }
.video-thumbnail img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.3s ease; opacity: 0.85; }
.video-card:hover .video-thumbnail img { transform: scale(1.05); opacity: 1; }
.video-thumbnail .play-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
/* Play Button with Ripple/Wave Effect - Style BGFIBank */
.play-btn-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.play-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(168, 176, 136, 0.4);
}
.video-card:hover .play-btn { transform: scale(1.1); }
.play-btn i { font-size: 1.75rem; color: var(--bgfi-blue-dark); margin-left: 5px; }
/* Ripple Waves Animation */
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--bgfi-olive);
    animation: ripple-animation 2.5s infinite ease-out;
}
.ripple-wave:nth-child(1) {
    width: 90px;
    height: 90px;
    animation-delay: 0s;
}
.ripple-wave:nth-child(2) {
    width: 110px;
    height: 110px;
    animation-delay: 0.4s;
}
.ripple-wave:nth-child(3) {
    width: 130px;
    height: 130px;
    animation-delay: 0.8s;
}
@keyframes ripple-animation {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}
.video-card:hover .ripple-wave {
    animation-duration: 1.8s;
}
.video-duration { position: absolute; bottom: 10px; right: 10px; background: rgba(0, 0, 0, 0.85); color: #fff; padding: 0.3rem 0.6rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; }
.video-info { padding: 1.25rem; }
.video-info h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.video-info p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin: 0; line-height: 1.4; }
/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.video-modal.active { display: flex; }
.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--bgfi-blue-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}
.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--bgfi-olive);
    border: none;
    color: var(--bgfi-blue-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.video-modal-close:hover { background: #fff; color: var(--bgfi-blue-dark); transform: scale(1.1); }
.video-container {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-modal-info {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, var(--bgfi-blue-dark), rgba(0, 54, 102, 0.95));
    border-top: 1px solid rgba(168, 176, 136, 0.2);
}
.video-modal-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.video-modal-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}
/* ===== Premium Banner ===== */
.premium-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 54, 102, 0.92) 0%, rgba(0, 26, 51, 0.95) 100%);
    overflow: hidden;
    padding: 4.5rem 0 4rem;
    margin-bottom: 2.5rem;
}
.premium-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('https://images.pexels.com/photos/7709219/pexels-photo-7709219.jpeg?auto=compress&cs=tinysrgb&w=1920'); */
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.banner-title .text-olive {
    color: var(--bgfi-olive-light);
}
.banner-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 1.5rem;
}
.banner-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.banner-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}
.banner-badge i {
    color: var(--bgfi-olive-light);
    font-size: 1.1rem;
}
/* NB : cette media query reprenait aussi les règles du header, déjà
   présentes plus haut. Elles ont été retirées d'ici. */
@media (max-width: 767.98px) {
    .premium-banner {
        padding: 2.5rem 0 2rem;
    }
    .banner-title {
        font-size: 1.5rem;
    }
    .banner-badges {
        gap: 1rem;
    }
}
@media (max-width: 767.98px) {
    .play-btn { width: 60px; height: 60px; }
    .play-btn i { font-size: 1.5rem; }
    .ripple-wave:nth-child(1) { width: 75px; height: 75px; }
    .ripple-wave:nth-child(2) { width: 90px; height: 90px; }
    .ripple-wave:nth-child(3) { width: 105px; height: 105px; }
    .video-modal-close { top: 8px; right: 8px; font-size: 1.25rem; width: 40px; height: 40px; }
}
.process-container { margin: 3rem 0; }
.process-timeline { position: relative; padding-left: 60px; }
.process-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--bgfi-olive), var(--bgfi-olive-light)); border-radius: 3px; }
.process-step { position: relative; margin-bottom: 2.5rem; }
.process-step:last-child { margin-bottom: 0; }
.step-number {
    position: absolute;
    left: -60px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bgfi-blue-dark);
    box-shadow: 0 0 20px rgba(168, 176, 136, 0.4);
    z-index: 1;
}
.step-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}
.step-content:hover { border-color: var(--bgfi-olive); }
.step-content p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 1rem; }
.step-content ul { list-style: none; padding: 0; margin: 0; }
.step-content li { display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; padding: 0.35rem 0; }
.step-content li i { color: var(--bgfi-olive); margin-top: 0.2rem; }
.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.step-badge.online {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}
.step-badge.agency {
    background: rgba(13, 145, 208, 0.15);
    color: #0d91d0;
}
.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(168, 176, 136, 0.15);
    color: var(--bgfi-olive-light);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 1rem;
}
.step-duration i {
    font-size: 0.85rem;
}
.cta-section {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.cta-section h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255, 255, 255, 0.75); margin-bottom: 1.5rem; }
.cta-section .btn-primary-bgfi {
    background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light));
    border: none;
    color: var(--bgfi-blue-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.cta-section .btn-primary-bgfi:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(168, 176, 136, 0.4); }
@media (max-width: 767.98px) {
    .process-timeline { padding-left: 50px; }
    .process-timeline::before { left: 18px; }
    .step-number { left: -50px; width: 40px; height: 40px; font-size: 1rem; }
    .step-content { padding: 1.25rem; }
}
/* ============================================
   Comparaison des types de compte
   NB : .card-header et .card-body étaient ici des sélecteurs
   GÉNÉRIQUES. Placés après la section « Account Cards », ils
   écrasaient son .card-body { padding: 1.5rem } sur tout le site.
   Ils sont désormais qualifiés par .account-type-card.
   ============================================ */
.comparison-container { margin: 2rem 0 3rem; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 991.98px) { .comparison-grid { grid-template-columns: 1fr; } }
.comparison-grid .account-type-card { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(20px); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; }
.comparison-grid .account-type-card:hover { border-color: var(--bgfi-olive); transform: translateY(-5px); }
.account-type-card.recommended { border-color: var(--bgfi-olive); }
.account-type-card .card-header {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}
.account-type-card .card-body {
    padding: 2rem;
}
.account-type-card.recommended .card-header { background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light)); }
.account-type-card.recommended .card-header h2,
.account-type-card.recommended .card-header p { color: var(--bgfi-blue-dark); }
.account-type-card .card-header .badge-recommended { position: absolute; top: 15px; right: 15px; background: var(--bgfi-blue-dark); color: var(--bgfi-olive-light); padding: 0.35rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.account-type-card .card-header .icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--bgfi-olive), var(--bgfi-olive-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.account-type-card.recommended .card-header .icon { background: var(--bgfi-blue-dark); }
.account-type-card .card-header .icon i { font-size: 2rem; color: var(--bgfi-blue-dark); }
.account-type-card.recommended .card-header .icon i { color: var(--bgfi-olive); }
.account-type-card .card-header h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.account-type-card .card-header p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; margin: 0; }
.feature-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--bgfi-olive); font-size: 1.1rem; margin-top: 0.15rem; }
.feature-list li span { color: rgba(255, 255, 255, 0.85); line-height: 1.5; }
.ideal-for { background: rgba(168, 176, 136, 0.1); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1rem; }
.ideal-for h4 { font-size: 0.85rem; font-weight: 600; color: var(--bgfi-olive); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.ideal-for p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.btn-choose { display: block; width: 100%; padding: 1rem; background: transparent; border: 2px solid var(--bgfi-olive); color: var(--bgfi-olive); font-weight: 600; border-radius: 10px; text-decoration: none; text-align: center; transition: all 0.3s ease; margin-top: 1.5rem; }
.btn-choose:hover { background: var(--bgfi-olive); color: var(--bgfi-blue-dark); }
.account-type-card.recommended .btn-choose { background: var(--bgfi-blue-dark); border-color: var(--bgfi-blue-dark); color: var(--bgfi-olive-light); }
.account-type-card.recommended .btn-choose:hover { background: var(--bgfi-blue); }
/* Comparison Table */
.comparison-table-section { margin-top: 3rem; }
.comparison-table-section h3 { font-size: 1.25rem; color: var(--bgfi-olive-light); margin-bottom: 1.5rem; text-align: center; }
.comparison-table { width: 100%; background: rgba(255, 255, 255, 0.06); border-radius: 16px; overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.comparison-table th { background: rgba(255, 255, 255, 0.05); color: var(--bgfi-olive-light); font-weight: 600; font-size: 0.9rem; }
.comparison-table th:first-child { border-radius: 16px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 16px 0 0; }
.comparison-table td { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 500; color: rgba(255, 255, 255, 0.7); }
.comparison-table .check { color: var(--bgfi-olive); font-size: 1.1rem; }
.comparison-table .cross { color: rgba(255, 255, 255, 0.3); font-size: 1.1rem; }
.help-banner { background: linear-gradient(135deg, rgba(168, 176, 136, 0.2), rgba(168, 176, 136, 0.1)); border: 1px solid var(--bgfi-olive); border-radius: 16px; padding: 2rem; text-align: center; margin-top: 3rem; }
.help-banner h3 { color: var(--bgfi-olive-light); font-size: 1.25rem; margin-bottom: 0.5rem; }
.help-banner p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1rem; }
.help-banner .btn { background: var(--bgfi-olive); color: var(--bgfi-blue-dark); font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; }
.help-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(168, 176, 136, 0.3); }
/* ============================================
   Badge reCAPTCHA
   Google applique un style en ligne : !important est nécessaire.
   ============================================ */
@media (max-width: 575.98px) {
    .grecaptcha-badge {
        visibility: hidden !important;
    }
}
