
    :root {
    --primary-color: #ff4500; /* Orange-rouge */
    --secondary-color: #ff8c00; /* Orange */
    --accent-color: #00875a;
    --text-color: #172b4d;
    --background-color: #ffffff;
    --gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    /* Suppression du motif de fond */
    --background-size: initial;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: none; /* Empêche tout motif hérité */
}

/* MODIFICATIONS À APPORTER DANS VOTRE CSS EXISTANT */

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--gradient);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
}

/* Ajoutez cette règle pour le support mobile */
@media (max-width: 768px) {
    header {
        position: sticky; /* Maintenez sticky même sur mobile */
        /* Conservez vos autres styles mobile existants */
    }
}

.logo-svg {
    width: 160px;
    height: 40px;
}

.logo-text {
    fill: white;
    font-size: 22px;
    font-weight: bold;
}

.menu-btn, .register-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
}

.menu-btn svg {
    fill: white;
}

.register-btn {
    background: white;
    color: var(--primary-color);
    border-radius: 24px;
    font-weight: 600;
    transition: transform 0.2s;
}

.register-btn:hover {
    transform: scale(1.05);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient);
    color: white;
}

.hero-content {
    position: relative;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
}

.key-points {
    list-style: none;
    margin-bottom: 2rem;
}

.key-points li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.key-points li::before {
    content: "✓";
    color: white;
    font-weight: bold;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cashback-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: rotate(15deg);
}

.badge-inner {
    text-align: center;
    line-height: 1.2;
}

.percentage {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.benefits {
    padding: 4rem 2rem;
    background: #f4f5f7;
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card.blue-bg {
    background: var(--gradient);
    color: white;
}



.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.benefit-card.blue-bg .benefit-icon {
    fill: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    color: #637381;
    margin: 0;
}

.benefit-card.blue-bg p {
    color: rgba(255,255,255,0.9);
}

.cashback-badge-small {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--gradient);
    padding: 2rem;
}

.bank-interface-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    transition: left 0.3s var(--animation-easing);
    z-index: 99;
    padding: 2rem;
}

.menu-overlay.show {
    left: 0;
}

.menu-list {
    list-style: none;
    margin-top: 2rem;
}

.menu-list li {
    margin-bottom: 1rem;
}

.menu-list a {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    border-radius: 8px;
}

.menu-list a:hover {
    background-color: #f4f5f7;
    color: var(--primary-color);
}

.services {
    padding: 4rem 2rem;
    background: white;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card.blue-bg {
    background: var(--gradient);
    color: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    fill: var(--primary-color);
}

.service-card.blue-bg .service-icon {
    fill: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #637381;
    margin: 0;
    line-height: 1.6;
}

.service-card.blue-bg p {
    color: rgba(255,255,255,0.9);
}

.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f4f5f7 0%, #ffffff 100%);
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #637381;
    line-height: 1.6;
    margin: 0;
}

/* Footer Styles */
footer {
    background: #2D3436;  
    color: #F5F6FA;       
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #F5F6FA;       
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #BDC3C7;      
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F5F6FA;      
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: #F5F6FA;       
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);  
    text-align: center;
}

.footer-bottom p {
    color: #BDC3C7;      
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-links a {
    color: #BDC3C7;      
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #F5F6FA;      
}

/* Registration Page Styles */
.register-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.register-header p {
    color: #637381;
    font-size: 1.1rem;
    line-height: 1.6;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,82,204,0.1);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.password-toggle svg {
    width: 24px;
    height: 24px;
    fill: #637381;
}

.register-form button[type="submit"].register-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: block;
}

.register-form button[type="submit"].register-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.terms-group {
    margin: 1.5rem 0;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #637381;
    font-size: 0.9rem;
}

.terms-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.terms-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-label a:hover {
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    color: #637381;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.coordinates-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.coordinates-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coordinates-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.coordinates-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.phone-row {
    grid-template-columns: 100px 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,82,204,0.1);
}

.continue-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.continue-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kyc-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.kyc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kyc-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.kyc-header p {
    color: #637381;
    font-size: 1.1rem;
    line-height: 1.6;
}

.kyc-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.kyc-section h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.instruction-text {
    color: #637381;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.warning-text {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.document-upload {
    margin-bottom: 2rem;
}

.upload-group h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.upload-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.upload-side {
    text-align: center;
}

.upload-btn {
    width: 100%;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-btn:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

.camera-icon {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
}

.preview {
    margin-top: 1rem;
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #637381;
}

.selfie-upload {
    max-width: 400px;
    margin: 0 auto;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    header {
        justify-content: center;
        position: relative;
    }

    .menu-btn {
        position: absolute;
        left: 1rem;
    }
    
    .logo {
        margin: 0 auto;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .key-points {
        display: inline-block;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: 2;
        justify-content: center;
    }
    
    .cashback-badge {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .bank-interface-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .benefits-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
.register-btn {
    background: white;
    color: var(--primary-color);
    border-radius: 24px;
    font-weight: 600;
    transition: transform 0.2s;
}
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-column {
        padding-bottom: 1rem;
    }

    .social-icons {
        justify-content: center;
        gap: 1.5rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .register-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .register-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .coordinates-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .coordinates-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-row {
        grid-template-columns: 80px 1fr;
    }
}

@media (max-width: 768px) {
    .kyc-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .kyc-header h1 {
        font-size: 2rem;
    }

    .upload-sides {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .upload-btn {
        padding: 1.5rem;
    }
}

.contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,82,204,0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    fill: var(--primary-color);
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #637381;
    line-height: 1.6;
}

.map-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2rem;
}

.contact-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
}

.faq-section h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 2rem;
}

.faq-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .map-section {
        padding: 2rem 1rem;
    }

    .contact-map {
        height: 300px;
    }
}