:root {
    --primary-color: #3b82f6;  /* Bleu moderne dynamique */
    --primary-dark: #1d4ed8;   /* Version plus foncée */
    --primary-light: #60a5fa;  /* Version plus claire */
    --primary-lighter: #93c5fd; /* Version encore plus claire */
    --primary-lightest: #dbeafe; /* Version la plus claire */
    --accent-color: #f97316;    /* Orange énergique */
    --secondary-color: #8b5cf6; /* Violet moderne */
    --neutral-50: #FAFBFC;     /* Gris très clair */
    --neutral-100: #F5F6F8;    /* Gris très clair */
    --neutral-200: #EBEDF2;    /* Gris clair */
    --neutral-300: #DFE2E9;    /* Gris moyen clair */
    --neutral-400: #B8BCC8;    /* Gris moyen */
    --neutral-500: #8B91A3;    /* Gris */
    --neutral-600: #666D82;    /* Gris foncé */
    --neutral-700: #4D5364;    /* Gris plus foncé */
    --neutral-800: #363B47;    /* Gris très foncé */
    --neutral-900: #22242C;    /* Gris le plus foncé */
    --error-color: #E77676;    /* Rouge plus doux */
    --success-color: #76C893;  /* Vert plus doux */
}

/* GLOBAL STYLES PREMIUM */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-700);
    padding-top: 0px;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* TYPOGRAPHIE UTILITAIRE PREMIUM */
.text-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--gray-900);
}

.text-section-title {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-navy);
}

.text-body-large {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Minimal Design Utilities */
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-600 {
    color: #4b5563;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.mb-12 {
    margin-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.g-6 > * {
    margin-bottom: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Enhanced CTA Button */
.cta-button {
    background-color: #2563eb;
    color: white;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 280px;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(107, 143, 212, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 1.3rem;
    margin-right: 8px;
}

/* Diagnostic CTA Section */
.diagnostic-cta-section {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.diagnostic-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.cta-baseline {
    margin-bottom: 40px;
}

.baseline-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 16px;
    line-height: 1.3;
}

.baseline-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(107, 143, 212, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-button-main {
    background: white;
    color: var(--primary-color);
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    min-width: 300px;
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
    background: var(--neutral-50);
}

.cta-button-main:active {
    transform: translateY(-1px);
}

.cta-note {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.cta-note small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .diagnostic-cta-section {
        padding: 60px 0;
    }
    
    .baseline-text {
        font-size: 1.8rem;
    }
    
    .baseline-subtitle {
        font-size: 1rem;
    }
    
    .cta-banner {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .cta-button-main {
        padding: 18px 30px;
        font-size: 1.1rem;
        min-width: 250px;
    }
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    padding: 0.75rem;
    height: auto;
}

.navbar.compact {
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.compact .navbar-brand {
    font-size: 1.1rem;
}

.navbar.compact .nav-link {
    font-size: 0.9rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        padding: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    .diagnostic-form {
        padding: 1rem;
    }
    
    .progress-step-label {
        font-size: 0.75rem;
    }
}

.navbar.shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--neutral-700) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, white 100%);
}

.hero-section h1 {
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: var(--neutral-600);
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 7rem 0 5rem;
    background: white;
    scroll-margin-top: 57px;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .progress-bar-container {
        margin: 1rem 0 2rem;
        padding: 0;
    }
    
    .progress-step {
        padding: 0 0.25rem;
    }
    
    .progress-step-number {
        width: clamp(32px, 8vw, 40px);
        height: clamp(32px, 8vw, 40px);
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .progress-step-label {
        font-size: clamp(0.7rem, 2vw, 0.875rem);
        max-width: 80px;
        margin: 0 auto;
    }
    
    .form-step {
        padding: 0.5rem;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .step-button {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .form-check {
        margin-bottom: 0.75rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .form-control, .form-select {
        padding: 0.625rem;
        font-size: 0.95rem;
    }
    
    .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .diagnostic-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .progress-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .progress-step-label {
        font-size: 0.7rem;
        max-width: 60px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-control, .form-select {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .step-button {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

/* Testimonial section styling - Simple and clean */
#testimonials {
    scroll-margin-top: 80px;
}

/* Form Styles */
#diagnostic {
    scroll-margin-top: 57px;
    padding: 7rem 0 5rem;
}

.diagnostic-form {
    background: white;
    border-radius: 16px;
    padding: clamp(1rem, 5vw, 2rem);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.progress-bar-container {
    margin-bottom: 2rem;
    justify-content: space-around;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.progress-step:hover {
    transform: translateY(-2px);
}

.progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid var(--neutral-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--neutral-500);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-step.active .progress-step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(107, 143, 212, 0.3);
    transform: scale(1.1);
}

.progress-step-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.progress-step.active .progress-step-label {
    color: var(--primary-color);
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#prevStep {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

#prevStep:hover {
    background: var(--neutral-200);
}

#nextStep, #submitForm {
    background: var(--primary-color);
    color: white;
}

#nextStep:hover, #submitForm:hover {
    background: var(--primary-dark);
}

.form-check {
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* FAQ Section Styling */
.faq-section {
    padding: 7rem 0 5rem;
    background: linear-gradient(180deg, var(--primary-lightest) 0%, white 100%);
    scroll-margin-top: 57px;
}

.accordion-item {
    border: 2px solid var(--primary-lighter);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 143, 212, 0.1);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    background: white;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-lightest);
    box-shadow: none;
}

.accordion-button:hover {
    color: var(--primary-color);
    background-color: var(--primary-lightest);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.accordion-body {
    padding: 2rem 1.5rem;
    color: var(--neutral-600);
    line-height: 1.8;
    background: white;
    border-top: 1px solid var(--primary-lighter);
}

/* Enhanced Footer Styling */
.footer {
    background: var(--neutral-800);
    color: var(--neutral-200);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.footer-title {
    color: var(--primary-lighter);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-list a {
    color: var(--neutral-600);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-lighter);
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    opacity: 0.9;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-lighter);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(107, 143, 212, 0.1);
}

.social-links a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 143, 212, 0.2);
}

/* PALETTE COULEUR PREMIUM */
:root {
    /* Couleurs principales */
    --primary-blue: #2563eb;
    --primary-navy: #1e40af;
    --primary-light: #dbeafe;
    
    /* Couleurs secondaires */
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    
    /* Neutres premium */
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    /* Gradients premium */
    --gradient-hero: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    --gradient-cta: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-section: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Hero Premium Section */
.hero-medical-assistant {
    background: var(--gradient-hero);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-medical-assistant::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 143, 212, 0.05) 0%, rgba(147, 197, 253, 0.1) 100%);
    z-index: 1;
}

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

/* TYPOGRAPHIE PREMIUM */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-baseline {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 500;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CTA PREMIUM */
.btn-hero {
    background: var(--gradient-cta);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-navy);
    color: white;
    background: var(--primary-blue);
    transform: translateY(-1px);
    text-decoration: none;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-content i {
    font-size: 1rem;
}

/* RESPONSIVE DESIGN PREMIUM - MOBILE FIRST */
@media (max-width: 1023px) {
    .hero-medical-assistant {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-medical-assistant {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-baseline {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.375rem 0.75rem;
    }
    
    .badge-content {
        font-size: 0.75rem;
    }
}

/* NAVIGATION HEADER RESPONSIVE */
.navbar-brand {
    font-size: 1.5rem !important;
}

@media (max-width: 768px) {
    .navbar-brand span {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-brand span {
        font-size: 1.1rem !important;
    }
}

/* Diagnostic link highlight */
.nav-link.fw-bold.text-warning {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.fw-bold.text-warning:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

/* CTA Button styling */
.btn-outline-light {
    transition: all 0.3s ease;
}

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

/* ANIMATIONS PREMIUM */
@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: heroSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.hero-title { animation-delay: 0.1s; }
.hero-baseline { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }

.hero-image {
    animation: heroSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* COMPOSANTS UTILITAIRES PREMIUM */
.btn-premium {
    background: var(--gradient-cta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.card-premium {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.section-spacing {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
}

/* SECTION FEATURES PREMIUM */
.features-section-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(37, 99, 235, 0.05);
}

.section-title-premium {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

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

.feature-card-premium {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    height: 100%;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
}

.feature-icon-premium {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon-premium.expertise {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--primary-blue);
}

.feature-icon-premium.flexibility {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: var(--accent-emerald);
}

.feature-icon-premium.security {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--accent-amber);
}

.feature-icon-premium.speed {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #8b5cf6;
}

.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .features-section-premium {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-premium {
        padding: 2rem 1.5rem;
    }
}

/* CTA Section Élégante */
.cta-elegant-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
}

.cta-main-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

/* Contenu élégant colonne gauche */
.cta-content-elegant {
    position: relative;
    z-index: 2;
}

.cta-header {
    margin-bottom: 2rem;
}

.cta-title-elegant {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.cta-subtitle-elegant {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.4;
    margin-bottom: 0;
}

.cta-features {
    margin-bottom: 2rem;
}

.feature-elegant {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
}

.feature-icon-elegant {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-icon-elegant i {
    font-size: 0.75rem;
    color: white;
}

/* Formulaire élégant */
.cta-form-elegant {
    margin-bottom: 1.5rem;
}

.form-wrapper-elegant {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-wrapper-elegant:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input-elegant {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    background: white;
    color: #374151;
    transition: all 0.3s ease;
}

.form-input-elegant::placeholder {
    color: #9ca3af;
}

.form-input-elegant:focus {
    outline: none;
    background: white;
}

.btn-cta-elegant {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.btn-cta-elegant:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Statistiques élégantes - Colonne droite */
.stats-elegant-container {
    position: relative;
    z-index: 2;
}

.stats-title-elegant {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item-elegant {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item-elegant:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-number-elegant {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-elegant {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

.trust-badge-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

/* Responsive Design pour CTA Élégant */
@media (max-width: 991px) {
    .cta-elegant-section {
        padding: 4rem 0;
    }
    
    .cta-main-card {
        padding: 2rem;
    }
    
    .cta-content-elegant {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .stats-elegant-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .form-wrapper-elegant {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-elegant {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid-elegant {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number-elegant {
        font-size: 2rem;
    }
    
    .cta-main-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

/* Contenu colonne gauche */
.cta-content-left {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.cta-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.cta-main-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #e2e8f0;
}

.benefit-item i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Formulaire moderne */
.cta-form-modern {
    margin-bottom: 2rem;
}

.input-group-modern {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input-modern {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    transition: all 0.3s ease;
}

.form-input-modern::placeholder {
    color: #9ca3af;
}

.form-input-modern:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.btn-cta-modern {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.btn-cta-modern:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.6);
}

/* Statistiques visuelles - Colonne droite */
.stats-visual-container {
    position: relative;
    z-index: 2;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.stat-modern {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.stat-modern:last-child {
    margin-bottom: 0;
}

.stat-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stat-icon-modern i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number-modern {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-modern {
    display: block;
    font-size: 0.875rem;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive Design pour CTA Moderne */
@media (max-width: 991px) {
    .cta-modern-section {
        padding: 4rem 0;
    }
    
    .cta-content-left {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .cta-main-title {
        font-size: 2.5rem;
    }
    
    .stats-visual-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .input-group-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-modern {
        width: 100%;
        justify-content: center;
    }
    
    .stat-modern {
        padding: 1rem;
    }
    
    .stat-icon-modern {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .stat-number-modern {
        font-size: 1.5rem;
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cta-reassurance {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-form {
    margin-bottom: 2rem;
}

.form-group-cta {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-control-cta {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #374151;
}

.form-control-cta.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control-cta:focus {
    outline: none;
    border-color: #6B8FD4;
    box-shadow: 0 0 0 3px rgba(107, 143, 212, 0.1);
    transform: translateY(-1px);
}

.form-control-cta::placeholder {
    color: #9ca3af;
}

.btn-cta {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    white-space: nowrap;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.6);
}

.btn-cta:active {
    transform: translateY(0);
}

.invalid-feedback {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: left;
}

.invalid-feedback.show {
    display: block;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.success-message.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .form-group-cta {
        flex-direction: column;
        max-width: 100%;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .form-control-cta,
    .btn-cta {
        padding: 0.875rem 1.25rem;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content {
    animation: slideInUp 0.8s ease-out;
}

/* FOOTER PREMIUM */
.site-footer {
    background: var(--gradient-section);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--gray-500);
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 0 2rem 0;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6B8FD4;
    text-decoration: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: #6B8FD4;
    width: 16px;
    font-size: 0.875rem;
}

.contact-item a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6B8FD4;
    text-decoration: none;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #6B8FD4;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #6B8FD4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 143, 212, 0.3);
    text-decoration: none;
}

.language-selector-footer {
    margin-top: 1rem;
}

.language-info {
    color: #64748b;
    font-size: 0.75rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.copyright-text {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.admin-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.admin-link:hover {
    color: #6b7280;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-brand,
    .footer-nav,
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .copyright-text {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .admin-link {
        font-size: 0.75rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.legal-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #6B8FD4;
    padding-bottom: 1rem;
}

.legal-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #6B8FD4;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #64748b;
    line-height: 1.7;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #374151;
    font-weight: 600;
}

.legal-back {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-intro {
        padding: 1.5rem;
    }
}

/* SERVICES PREMIUM SECTION */
.advanced-services-section {
    background: var(--white);
    padding: 6rem 0;
    position: relative;
}

.advanced-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="20" cy="80" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.08);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 1.75rem;
    color: #2563eb;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.service-card:hover .service-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #2563eb;
}

.service-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.service-card:hover .service-description {
    color: #475569;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 1.2rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 20px 20px;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.learn-more {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more::after {
    transform: translateX(5px);
}

/* Grid responsiveness */
@media (max-width: 1199.98px) {
    .service-card {
        height: 260px;
    }
}

@media (max-width: 767.98px) {
    .service-card {
        height: auto;
        min-height: 240px;
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}

/* Loading animations for service cards */
.service-card {
    opacity: 0;
    animation: serviceCardSlideIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes serviceCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Statistiques CTA Section */
.stats-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb !important;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Titres de section modernisés */
.section-heading-modern {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}