/* Variables CSS */
:root {
    --primary-color: #00AFEF;
    --primary-dark: #0096D6;
    --secondary-color: #00173C;
    --text-gray: #576A8A;
    --light-gray: #F3F4F6;
    --border-gray: #E3E3E3;
    --white: #FFFFFF;
    --gradient-blue: linear-gradient(180deg, #00AFEF 0%, #4DCFFF 100%);
    --gradient-radial: radial-gradient(circle at 50% 50%, #5640D9 0%, #7353D8 31.12%, #FFFFFF 100%);
    --font-primary: 'Radio Canada Big', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-stats: 'Space Grotesk', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero .container {
    max-width: 1440px;
    padding: 0 120px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 64px;
    letter-spacing: -0.64px;
    margin-bottom: 24px;
    max-width: 515px;
    line-height: 76.8px;
}

.text-primary {
    color: var(--primary-color);
}

h2 {
    font-size: 56px;
    letter-spacing: -0.56px;
    margin-bottom: 24px;
}

h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 29px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 175, 239, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}
/* Navigation */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1440px;
    padding: 0 120px;
    transition: all 0.3s ease;
}

/* Navbar scrolled state */
.navbar.scrolled {
    background-color: transparent;
    padding: 15px 0;
}

.navbar.scrolled .container {
    max-width: calc(var(--container-width) * 0.8);
    border-radius: 5000px;
    border: 1px solid #D2D2D2;
    padding: 16px 16px 16px 20px;
    margin-top: 10px;

    background: linear-gradient(90deg, rgba(247, 250, 252, 0.18) 0%, rgba(247, 250, 252, 0.28) 25.96%, rgba(247, 250, 252, 0.28) 68.27%, rgba(247, 250, 252, 0.18) 100%);
    filter: drop-shadow(-8px -10px 46px #0000005f);
    backdrop-filter: brightness(1.1) blur(10px);
}

.navbar.scrolled .container::before {
    -webkit-box-shadow: inset 2px 2px 0px -2px rgba(255, 255, 255, 0.7), 
                        inset 0 0 3px 1px rgba(255, 255, 255, 0.7);
    box-shadow: inset 6px 6px 0px -6px rgba(255, 255, 255, 0.7), 
                inset 0 0 8px 1px rgba(255, 255, 255, 0.7);
    
}

/* Le bouton reste blanc même dans la navbar scrollée */
.navbar.scrolled .btn-primary {
    background-color: var(--white);
    color: #00173C;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

/* Navbar button override */
.navbar .btn-primary {
    background-color: var(--white);
    color: #00173C;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin: 0 20px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.language-toggle:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
}

.language-toggle svg {
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--secondary-color);
    transition: var(--transition);
    text-align: left;
}

.language-option:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.language-option span:first-child {
    font-size: 18px;
}

/* Adjust navbar layout to accommodate language selector */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* When navbar is scrolled */
.navbar.scrolled .language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1000;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(236, 244, 252, 0.3) 100%);*/
    background-image: url('assets/background-hero.png');
    background-size: cover;
    background-position:bottom;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #292929;
    max-width: 598px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-stats);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #4B5563;
    max-width: 130px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    width: 500px;
}

.scene-3d {
    position: relative;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop {
    width: 230%;
    height: auto;
    position: absolute;
    z-index: 2;
    transform: translateX(10%);
}

@media screen and (max-width: 1920px) {
    .laptop {
        transform: translateX(0);
    }
}

.floating-elements {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Announcement Section */
.announcement {
    padding: 60px 0;
}

.announcement-card {
    padding: 32px 64px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;

    border-radius: 24px;
    border: 0.833px solid #D5D5D5;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.10);
}

.earth-bg-container {
    width: 40%;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-bg {
    position: absolute;
    bottom: -55%;
    width: 35%;
    height: auto;
    opacity: 1;
    z-index: 1;
    flex-shrink: 0;
    overflow: hidden;
}

.earth-bg img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    object-position: center top;
}

.announcement-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 50%;    

}

.flag {
    width: 45px;
    height: 32px;
    border-radius: 6px;
}

.announcement-content p {
    font-size: 14px;
    margin-top: 8px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
}

.announcement-content h3 {
    font-size: 28px;
    margin-top: 16px;
    margin-bottom: 0px;
    font-weight: 600;
}

.announcement .btn-primary {
    font-size: 14px;
    padding: 12px 24px;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 24px;
}

.announcement .container {
    max-width: 1200px;
}
/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10 !important;
}

.section-header h2 {
    max-width: 650px;
    margin: 0 auto 24px;
    line-height: 1.1;
}

.tag {
    display: inline-block;
    background-color: var(--white);
    border: 1px solid #CCD1D8;
    border-radius: 99px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.features-grid {
    display: flex;
    gap: 16px;  
    max-width: 1200px;
    height: 550px;
    align-items: center;
    justify-content: center;
}

/* La grande carte à gauche */
.feature-card.large {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

/* La colonne de droite avec 2 cartes */
.features-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 50%;
}

.feature-card {
    background: var(--gradient-blue);
    border-radius: 32px;
    display: flex;
    padding: 40px;
    border: 1px solid #F1F1F1;
    position: relative;
    transition: var(--transition);
    color: var(--white);
    height: calc(50% - 8px);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 175, 239, 0.2);
}

.feature-icon-white {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-white img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-family: "Radio Canada Big";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 140% */
    letter-spacing: -0.2px;
}

.feature-card p {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: #FFFFFF;
}

/* Feature preview section */
.feature-preview.large {
    margin-top: auto;
    padding-top: 24px;
    position: relative;
    bottom: -20px;
    right: auto;
    width: 100%;
}

.feature-preview {
    margin-top: auto;
    padding-top: 24px;
    position: relative;
    right: -42px;
    bottom: -5px;
    width: 50%;
}

.feature-preview.large img {
    width: 100%;
    height: auto;
}

.feature-preview img {
    width: 120%;
    height: auto;
}

/* Styles supprimés car remplacés par les images PNG */

/* Reporting Business section */
.feature-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 50%;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 280vh; /* Ajusté pour plus d'espace */
}
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.benefits-images {
    position: sticky;
    top: 20vh;
    height: fit-content;
    z-index: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 270px);
    gap: 10px;
}

.benefit-img-container {
    background-color: #F8F9FA;
    width: 270px;
    height: 240px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.benefit-img.active {
    filter: grayscale(0%);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240vh;
    padding-top: 10vh;
}
.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.6s ease;
    flex: 1;
    align-items: flex-start;
}

.benefit-item.visible {
    opacity: 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.benefit-text h3 {
    margin-bottom: 12px;
}

.benefit-text p {
    margin-bottom: 20px;
}

/* Senegal CTA Section */
.senegal-cta {
    padding: 80px 0;
    background: #F8F9FA;
    margin: 80px 0;
    overflow: hidden;
}

.senegal-cta .container {
    max-width: 1200px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

.cta-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px;
}

.cta-image {
    position: absolute;
    bottom: -200px;
    z-index: 1;
}

.cta-image img {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.cta-text {
    flex: 1;
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    width: 60px;
    height: 42px;
    margin-bottom: 20px;
}

.cta-badge img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.senegal-cta .btn-primary {
    font-size: 16px;
    padding: 14px 28px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}
.faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}

.faq-header h2 {
    margin-bottom: 24px;
}

.faq-header p {
    margin-bottom: 32px;
}

.faq-item {
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: 20px;
    font-family: var(--font-primary);
    color: var(--secondary-color);
    transition: var(--transition);
}
.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 32px 20px 64px;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact CTA Section */
.contact-cta {
    background-image: url('assets/background-more-infos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    z-index: 1;
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}
.contact-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
}

.contact-phone {
    margin-top: 32px;
    font-size: 14px;
    opacity: 0.9;
    color: var(--white);
}

.contact-phone strong {
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #111827;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 32px;
    margin-bottom: 20px;
}
.fintech-label {
    height: 100px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column address {
    font-style: normal;
    font-size: 14;
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 14px;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero .container,
    .navbar .container {
        padding: 0 40px;
    }
    
    .feature-card.large {
        min-height: auto;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-visual {
        width: 400px;
    }
    
    .laptop {
        width: 200%;
    }
}

@media (max-width: 768px) {
    /* Base styles */
    .container {
        padding: 0 16px;
    }
    
    /* Typography */
    h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    h3 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
    
    /* Navigation */
    .navbar {
        padding: 20px 0;
    }
    
    .navbar .container {
        padding: 0 20px;
        margin: 0 16px;
    }
    
    .navbar.scrolled .container {
        padding: 12px 20px;
        margin: 8px auto 0;
        width: 90%;
        border-radius: 50px;
        background: rgba(247, 250, 252, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    /* Language selector mobile */
    .language-selector {
        display: none;
    }
    
    /* Mobile Menu Overlay - Séparé de la navbar */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        z-index: 999;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-overlay.active {
        right: 0;
    }
    
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 30px;
        padding: 40px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        font-weight: 500;
        color: var(--secondary-color);
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid transparent;
        transition: var(--transition);
    }
    
    .mobile-nav-link:hover {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }
    
    .mobile-menu-content .btn-primary {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 14px 28px;
        border-radius: 29px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 500;
        font-size: 16px;
        margin-top: 20px;
        transition: var(--transition);
    }
    
    .mobile-menu-content .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 175, 239, 0.3);
    }
    
    /* Mobile Language Selector */
    .mobile-language-selector {
        margin: 20px 0;
        padding: 16px 0;
        border-top: 1px solid var(--border-gray);
        border-bottom: 1px solid var(--border-gray);
    }
    
    .mobile-language-options {
        display: flex;
        gap: 12px;
        justify-content: center;
    }
    
    .mobile-language-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--light-gray);
        border: 1px solid var(--border-gray);
        border-radius: 20px;
        cursor: pointer;
        font-family: var(--font-secondary);
        font-size: 14px;
        font-weight: 500;
        color: var(--secondary-color);
        transition: var(--transition);
    }
    
    .mobile-language-option:hover,
    .mobile-language-option.active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
    }
    
    .mobile-language-option span:first-child {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 40px;
        background-position: center bottom;
        background-size: cover;
    }
    
    .hero .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-text h1 {
        margin-bottom: 16px;
        font-size: 36px;
    }
    
    .hero-text p {
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stats {
        gap: 16px;
        justify-content: space-between;
        width: 100%;
    }
    
    .stat {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
        max-width: 100%;
    }
    
    .hero-visual {
        display: none;
    }
    
    /* Announcement Section */
    .announcement {
        padding: 40px 0;
    }
    
    .announcement-card {
        padding: 24px;
        min-height: auto;
    }
    
    .earth-bg-container {
        display: none;
    }
    
    .announcement-content {
        width: 100%;
    }
    
    .flag {
        width: 36px;
        height: 24px;
    }
    
    .announcement-content h3 {
        font-size: 20px;
        margin-top: 12px;
    }
    
    .announcement-content p {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .announcement .btn-primary {
        margin-top: 16px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Features Section */
    .features {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header h2 {
        margin-bottom: 16px;
    }
    
    .tag {
        font-size: 12px;
        padding: 4px 16px;
        margin-bottom: 16px;
    }
    
    .features-grid {
        flex-direction: column;
        height: auto;
        gap: 32px;
    }
    
    .feature-card.large,
    .features-column {
        width: 100%;
    }
    
    .features-column {
        gap: 32px;
        height: auto;
    }
    
    .feature-card {
        padding: 24px 24px 0;
        height: auto;
        min-height: 200px;
        flex-direction: column;
        border-radius: 24px;
    }
    
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .feature-header {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }
    
    .feature-icon-white {
        margin-bottom: 16px;
    }
    
    .feature-preview,
    .feature-preview.large {
        display: block;
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }
    
    .feature-preview img,
    .feature-preview.large img {
        width: 100%;
        height: auto;
        max-height: 170px;
        object-fit: contain;
        border-radius: 0 0 0 0;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        bottom: 0px;
    }
    
    /* Images mobiles pour les feature cards */
    .feature-preview img[src*="reporting-reglementaire"] {
        content: url('assets/reporting-reglementaire-mobile.png');
    }
    
    .feature-preview img[src*="reporting-business"] {
        content: url('assets/reporting-business-mobile.png');
    }
    
    .feature-preview img[src*="reporting-editique"] {
        content: url('assets/reporting-editique-mobile.png');
    }
    
    /* Benefits Section - Déjà gérée par les media queries globales */
    
    .benefits-layout {
        gap: 40px;
    }
    
    .benefits-images {
        position: relative;
        top: 0;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .benefit-img-container {
        width: 100%;
        height: 120px;
    }
    
    .benefit-img {
        width: 90%;
        height: 90%;
    }
    
    .benefits-content {
        min-height: auto;
        padding-top: 0;
        gap: 40px;
    }
    
    .benefit-item {
        gap: 16px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon img {
        width: 48px;
        height: 48px;
    }
    
    .benefit-text h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .benefit-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .benefit-text .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Senegal CTA */
    .senegal-cta {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .cta-image-container {
        display: none;
    }
    
    .cta-text {
        padding-left: 0;
        text-align: center;
    }
    
    .cta-badge {
        width: 48px;
        height: 32px;
        margin: 0 auto 16px;
    }
    
    .cta-text h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-text p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* FAQ Section */
    .faq {
        padding: 40px 0;
    }
    
    .faq-layout {
        gap: 32px;
        display: flex;
        flex-direction: column;
    }
    
    .faq-header {
        text-align: center;
        width: 100%;
    }
    
    .faq-header h2 {
        margin-bottom: 16px;
    }
    
    .faq-header p {
        margin-bottom: 24px;
    }
    
    .faq-list {
        width: 100%;
    }
    
    .faq-item {
        margin-bottom: 12px;
        width: 100%;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
        gap: 12px;
        width: 100%;
    }
    
    .faq-icon {
        font-size: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 14px;
    }
    
    /* Contact CTA */
    .contact-cta {
        padding: 40px 0;
    }
    
    .contact-content h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .contact-phone {
        margin-top: 24px;
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
        overflow: hidden;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 32px;
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 16px;
    }
    
    .fintech-label {
        height: 80px;
        margin-bottom: 16px;
    }
    
    .footer-links {
        gap: 24px;
        text-align: left;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-column li {
        margin-bottom: 8px;
    }
    
    .footer-column a {
        font-size: 12px;
    }
    
    .footer-column address {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 16px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom p,
    .footer-legal a {
        font-size: 11px;
    }
    
    .footer-legal {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats {
        gap: 8px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 24px;
    }
}
/* Grid adjustments for features */


/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Mobile Section - Masquée par défaut */
.benefits-mobile {
    display: none;
    padding: 40px 0 0;
    background-color: var(--white);
    padding-bottom: 10vh;
}

/* Masquer benefits desktop sur mobile et afficher benefits-mobile */
@media (max-width: 768px) {
    .benefits {
        display: none;
    }
    
    .benefits-mobile {
        display: block;
    }
}

.mobile-benefits-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-image-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 40px;
}

.mobile-image-sticky::before {
    content: '';
    position: absolute;
    top: -120px;
    left: calc(-1 * (100vw - 100%)/2);
    right: 0;
    height: 55vh;
    width: 100vw;
    background: linear-gradient(180deg, #FFFFFFFF 87.5%, #FFFFFF00 100%);
    z-index: -10;
    opacity: 1;
}

.mobile-img-container {
    position: relative;
    width: 280px;
    height: 200px;
    background-color: #F8F9FA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-benefit-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: grayscale(100%);
}

.mobile-benefit-img.active {
    opacity: 1;
    filter: grayscale(0%);
}

.mobile-benefits-content {
    display: flex;
    flex-direction: column;
    gap: 25vh;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.mobile-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.6s ease;
    padding: 20px;
    max-width: 500px;
}

.mobile-benefit-item.visible {
    opacity: 1;
}

.mobile-benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-benefit-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.mobile-benefit-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-benefit-text h3 {
    font-size: 24px;
    margin: 0;
    color: var(--secondary-color);
}

.mobile-benefit-text p {
    font-size: 16px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mobile-benefit-text .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* Additional hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}