/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary-color: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --purple-accent: #8b5cf6;
    --pink-accent: #ec4899;
    --cyan-accent: #06b6d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-nav.active::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 80px;
    padding: 3rem 0 2.5rem;
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.15) 0%, 
        rgba(59, 130, 246, 0.25) 50%,
        rgba(139, 92, 246, 0.20) 100%),
        linear-gradient(to bottom, #f8fafc 0%, #e0f2fe 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
    color: #fbbf24;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--text-light);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--secondary-color);
}

/* ============================================
   SIMULATOR
   ============================================ */
.simulator-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 380px;
    border: 2px solid #e5e7eb;
}

.simulator-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.simulator-card .form-group {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.value-display {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.simulator-results {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.result-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

section {
    padding: 3rem 0;
}

/* ============================================
   ADVANTAGES - SUPER MODERN & CLEAN DESIGN (WHITE BACKGROUND)
   ============================================ */
.advantages-super-modern {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.advantages-super-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.advantages-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.advantages-main-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.advantages-main-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 400;
}

.advantages-two-column-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column - Visual */
.advantages-visual-column {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s ease;
    border: 3px solid #e0e7ff;
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.8), transparent);
    padding: 2rem;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.success-badge i {
    font-size: 1.5rem;
    color: #10b981;
}

.success-badge span {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid #dbeafe;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
}

.trust-item i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.trust-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

/* Right Column - Features */
.advantages-features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-modern-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-modern-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.orange-gradient {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pink-gradient {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-text-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-text-modern p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.cta-button-container {
    margin-top: 2rem;
    text-align: center;
}

.btn-gradient-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.btn-gradient-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-gradient-modern i {
    transition: transform 0.3s ease;
}

.btn-gradient-modern:hover i {
    transform: translateX(5px);
}

/* Responsive - Tablette et Mobile */
@media (max-width: 968px) {
    .advantages-two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantages-main-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .advantages-main-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .visual-card {
        transform: none;
        max-width: 100%;
    }

    .visual-card img {
        max-height: 400px;
        object-fit: cover;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .trust-item {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 100px;
    }

    .feature-modern-item {
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-icon-modern {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-text-modern h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-text-modern p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .feature-modern-item:hover {
        transform: translateY(-5px);
    }
}

/* Responsive - Mobile (Android et iPhone) */
@media (max-width: 640px) {
    .advantages-super-modern {
        padding: 3rem 0;
    }

    .advantages-header-modern {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .advantages-main-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .advantages-main-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .advantages-two-column-layout {
        gap: 2rem;
        padding: 0;
    }

    .advantages-visual-column {
        padding: 0 1rem;
    }

    .visual-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .visual-card img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem;
    }

    .trust-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 120px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .trust-item i {
        font-size: 1rem;
    }

    .advantages-features-column {
        padding: 0 1rem;
    }

    .feature-modern-item {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 1rem;
    }

    .feature-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-text-modern {
        width: 100%;
    }

    .feature-text-modern h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .feature-text-modern p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #6b7280;
    }

    .cta-button-container {
        padding: 1rem;
        margin-top: 1rem;
    }

    .btn-gradient-modern {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
}

/* Responsive - Très petits mobiles Android */
@media (max-width: 380px) {
    .advantages-main-title {
        font-size: 1.5rem;
    }

    .advantages-main-subtitle {
        font-size: 0.9rem;
    }

    .trust-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .feature-modern-item {
        padding: 1rem;
    }

    .feature-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .feature-text-modern h3 {
        font-size: 1rem;
    }

    .feature-text-modern p {
        font-size: 0.85rem;
    }

    .btn-gradient-modern {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   ADVANTAGES - ULTRA MODERN PROFESSIONAL DESIGN (OLD - KEEP)
   ============================================ */
.advantages-ultra-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.advantages-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.advantages-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.advantages-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.advantages-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.advantages-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.advantage-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.advantage-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-feature-card:hover::before {
    transform: scaleX(1);
}

.advantage-feature-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.featured-card {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-box::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    padding: 3px;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}

.feature-icon-box.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon-box.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon-box.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon-box.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon-box.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-icon-box.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.advantage-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.advantage-feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.advantages-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stat-item-modern {
    text-align: center;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-title {
        font-size: 2rem;
    }

    .advantages-subtitle {
        font-size: 1rem;
    }

    .advantages-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantages-stats {
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number-modern {
        font-size: 2rem;
    }
}

/* ============================================
   ADVANTAGES - MODERN DESIGN (OLD - KEEP)
   ============================================ */
.advantages-modern {
    background: linear-gradient(135deg, #1e40af 0%, #4338ca 50%, #6366f1 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.advantages-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.advantages-modern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.advantages-text {
    color: white;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.advantage-check {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.advantage-check i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.advantage-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.advantage-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.advantages-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.advantages-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .advantages-modern-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .advantages-image {
        order: -1;
    }

    .section-title-left {
        font-size: 2rem;
        text-align: center;
    }

    .section-intro {
        text-align: center;
    }

    .advantages-image img {
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* ============================================
   ADVANTAGES - OLD DESIGN (KEEP FOR COMPATIBILITY)
   ============================================ */
.advantages {
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid #e5e7eb;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
}

.advantage-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============================================
   CREDIT TYPES
   ============================================ */
.credit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.credit-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid #e5e7eb;
}

.credit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.credit-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.credit-card .badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.credit-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
}

.credit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.credit-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.credit-features {
    list-style: none;
    margin-bottom: 1rem;
}

.credit-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.credit-features i {
    color: var(--secondary-color);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
/* ============================================
   HOW IT WORKS - MODERN DESIGN
   ============================================ */
.how-it-works-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 0;
    position: relative;
}

.how-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.how-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.how-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.how-subtitle-modern {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.steps-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-modern-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.step-modern-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.featured-step-card {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    transform: scale(1.05);
}

.featured-step-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #10b981;
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

.step-highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-modern-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-modern-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.step-modern-card:hover .step-modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.blue-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.green-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.purple-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.step-modern-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-modern-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #475569;
}

.step-benefits i {
    color: #10b981;
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.step-modern-card:last-child .step-arrow {
    display: none;
}

.how-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    gap: 2rem;
}

.cta-content-box {
    flex: 1;
    color: white;
}

.cta-content-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-content-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-how-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-how-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-how-cta i {
    transition: transform 0.3s ease;
}

.btn-how-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 968px) {
    .steps-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-step-card {
        transform: scale(1);
    }

    .featured-step-card:hover {
        transform: translateY(-10px) scale(1);
    }

    .step-arrow {
        display: none;
    }

    .how-title-modern {
        font-size: 2rem;
    }

    .how-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-box h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   HOW IT WORKS - OLD DESIGN (KEEP)
   ============================================ */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 3rem;
    color: #94a3b8;
    margin: 1.5rem 0;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid #e5e7eb;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    overflow: hidden; /* Pour que l'image reste dans le cercle */
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Couvre tout l'espace sans déformation */
    object-position: center; /* Centre le visage */
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   BORROWING CAPACITY
   ============================================ */
.borrowing-capacity {
    background: var(--bg-light);
    padding: 4rem 0;
}

.capacity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   MODERN CALCULATOR CARD
   ============================================ */
.modern-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: none;
    overflow: hidden;
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.modern-card {
    animation: fadeInUp 0.6s ease-out;
}

.form-group-modern {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group-modern:nth-child(1) { animation-delay: 0.1s; }
.form-group-modern:nth-child(2) { animation-delay: 0.2s; }
.form-group-modern:nth-child(3) { animation-delay: 0.3s; }

.btn-calculate-modern {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.card-header-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.card-header-modern::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-badge {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.icon-badge i {
    font-size: 2rem;
    color: white;
}

.card-header-modern h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subtitle-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.calc-form-modern {
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ============================================
   MODERN FORM GROUPS
   ============================================ */
.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group-modern label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-group-modern label i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
}

.value-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
    min-width: 100px;
    text-align: center;
}

.value-badge.expenses {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.value-badge.term {
    background: linear-gradient(135deg, var(--secondary-color), var(--cyan-accent));
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* ============================================
   MODERN SLIDERS
   ============================================ */
.slider-container {
    position: relative;
    padding: 1rem 0;
}

.modern-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: #e5e7eb;
    outline: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.5);
}

.modern-slider::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

.modern-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.expenses-slider::-webkit-slider-thumb {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.expenses-slider::-moz-range-thumb {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.info-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.info-hint i {
    color: var(--secondary-color);
}

/* ============================================
   TERM BUTTONS
   ============================================ */
.term-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.term-btn {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.term-btn:hover::before {
    left: 100%;
}

.term-btn:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
}

.term-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--cyan-accent));
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* ============================================
   CALCULATE BUTTON MODERN
   ============================================ */
.btn-calculate-modern {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

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

.btn-calculate-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-calculate-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.btn-calculate-modern:active {
    transform: translateY(-1px);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1;
}

.btn-text {
    z-index: 1;
}

/* ============================================
   MODERN RESULTS CARD
   ============================================ */
.results-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--cyan-accent) 100%);
}

.results-content {
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-highlight-modern {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(16, 185, 129, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(5, 150, 105, 0.15);
    position: relative;
    overflow: hidden;
}

.result-highlight-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.result-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.result-icon-circle i {
    font-size: 2rem;
    color: white;
}

.result-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value-big {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.result-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   MODERN DETAILS
   ============================================ */
.capacity-details-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.detail-item-modern {
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.detail-item-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Style pour les images réelles des types de crédit */
.detail-image {
    width: 400px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.detail-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .detail-image {
        width: 100%;
        max-width: 400px;
        height: 280px;
        margin: 0 auto 30px;
    }
}

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

.detail-content .detail-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.detail-content .detail-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ============================================
   MODERN STATUS
   ============================================ */
.capacity-status-modern {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.08));
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-left: 4px solid var(--primary-color);
}

.capacity-status-modern.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 146, 60, 0.08));
    border-left-color: var(--accent-color);
}

.capacity-status-modern.warning .status-icon i {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
}

.capacity-status-modern.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(248, 113, 113, 0.08));
    border-left-color: #ef4444;
}

.capacity-status-modern.error .status-icon i {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capacity-status-modern p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   MODERN TIPS
   ============================================ */
.capacity-tips-modern {
    background: #f8fafc;
    padding: 1.75rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tips-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.tips-header h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.capacity-tips-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.capacity-tips-modern li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.capacity-tips-modern li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   MODERN CTA BUTTON
   ============================================ */
.btn-cta-modern {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

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

.btn-cta-modern:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

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

.btn-cta-modern .btn-icon,
.btn-cta-modern .btn-text {
    z-index: 1;
}

.result-highlight {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(5, 150, 105, 0.2);
}

.result-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-value-big {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.result-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.capacity-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.detail-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-label i {
    color: var(--primary-color);
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.capacity-status {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    padding: 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.capacity-status.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.1));
    border-left-color: var(--accent-color);
}

.capacity-status.warning i {
    color: var(--accent-color);
}

.capacity-status.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    border-left-color: #ef4444;
}

.capacity-status.error i {
    color: #ef4444;
}

.capacity-status i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.capacity-status p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.capacity-tips {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.capacity-tips h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.capacity-tips h4 i {
    color: var(--accent-color);
}

.capacity-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capacity-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.capacity-tips li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.capacity-info {
    max-width: 900px;
    margin: 0 auto;
}

.info-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.info-box h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.info-box p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.info-box strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Responsive pour Borrowing Capacity */
@media (max-width: 968px) {
    .capacity-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .result-value-big {
        font-size: 2.25rem;
    }

    .card-header-modern {
        padding: 2rem 1.5rem 1.5rem;
    }

    .card-header-modern h3 {
        font-size: 1.5rem;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
    }

    .icon-badge i {
        font-size: 1.75rem;
    }

    .calc-form-modern {
        padding: 2.5rem 1.5rem 1.5rem;
        gap: 2rem;
    }

    .term-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-badge {
        font-size: 1rem;
        padding: 0.4rem 1rem;
        min-width: 85px;
    }

    .form-group-modern label {
        font-size: 0.9rem;
    }

    .form-group-modern label i {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .term-buttons {
        grid-template-columns: 1fr;
    }

    .label-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .value-badge {
        align-self: flex-end;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
/* ============================================
   LENDING BENEFITS SECTION - WHITE BACKGROUND
   ============================================ */
.lending-benefits-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.benefits-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
}

.benefits-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.process-step-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.process-step-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.featured-step {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    transform: scale(1.05);
}

.featured-step:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #10b981;
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.step-number-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blue-badge {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.green-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.purple-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.process-step-card:hover .step-icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.blue-circle {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.green-circle {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.purple-circle {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.process-step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-step-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.step-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #475569;
}

.step-features-list i {
    color: #10b981;
    font-size: 0.9rem;
}

.trust-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-text strong {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 700;
}

.trust-text span {
    font-size: 0.8rem;
    color: #64748b;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
}

.cta-center-box {
    text-align: center;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-primary-large i {
    transition: transform 0.3s ease;
}

.btn-primary-large:hover i {
    transform: translateX(5px);
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 968px) {
    .benefits-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-step {
        transform: scale(1);
    }

    .featured-step:hover {
        transform: translateY(-10px) scale(1);
    }

    .benefits-main-title {
        font-size: 2rem;
    }

    .trust-banner {
        gap: 1.5rem;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-banner {
        flex-direction: column;
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   STATS SECTION - ULTRA MODERN DESIGN (OLD)
   ============================================ */
.stats-ultra-modern {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-ultra-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.stats-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.stat-modern-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-modern-card:hover::before {
    opacity: 1;
}

.featured-stat {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-color: #10b981;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.stat-modern-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-modern-icon {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.stat-modern-card:hover .stat-modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.blue-glow .stat-modern-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.green-glow .stat-modern-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.purple-glow .stat-modern-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.orange-glow .stat-modern-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.stat-modern-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stat-modern-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-modern-plus {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-top: 0.5rem;
}

.stat-modern-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-modern-bar {
    height: 4px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}

.stat-modern-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    animation: progress-slide 2s ease-out forwards;
}

.blue-bar::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.green-bar::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.purple-bar::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.orange-bar::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

@keyframes progress-slide {
    to {
        left: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stats-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-modern-number {
        font-size: 2.5rem;
    }

    .stat-modern-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STATS SECTION - OLD DESIGN (KEEP)
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 2.5rem 0;
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid #e5e7eb;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
}

.stat-icon {
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   QUICK FAQ
   ============================================ */
.quick-faq {
    background: var(--bg-light);
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.faq-quick-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-quick-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-q-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-quick-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-quick-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   QUICK CALCULATOR
   ============================================ */
.quick-calculator {
    background: white;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.savings-example {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.savings-item:last-child {
    border-bottom: none;
}

.savings-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.savings-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.calc-visual {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.calc-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.calc-visual i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.calc-text {
    position: relative;
    z-index: 1;
}

.calc-line {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calc-line:first-child {
    font-size: 2rem;
    color: #fbbf24;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    background: var(--bg-light);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    text-align: center;
}

.comparison-header .comp-item {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comp-item {
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-item:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--text-dark);
}

.comp-highlight {
    background: linear-gradient(to bottom, rgba(5, 150, 105, 0.05), rgba(59, 130, 246, 0.05));
    color: var(--primary-color);
    font-weight: 600;
}

.comp-badge {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background: white;
    padding: 2.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid #e5e7eb;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trust-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

/* ============================================
   CASES COLORÉES ALÉATOIRES (3 choisies)
   ============================================ */

/* Case 1: advantage-card 4 - Couleur subtile lavande */
.advantage-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.3) 0%, rgba(237, 233, 254, 0.4) 100%);
    border-color: rgba(168, 85, 247, 0.15);
}

.advantage-card:nth-child(4) .advantage-icon {
    background: linear-gradient(135deg, #c084fc, #e9d5ff);
}

/* Case 2: credit-card 5 (Crédito Estudante) - Couleur subtile menthe */
.credit-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.3) 0%, rgba(220, 252, 231, 0.4) 100%);
    border-color: rgba(16, 185, 129, 0.15);
}

.credit-card:nth-child(5) .credit-icon {
    background: linear-gradient(135deg, #6ee7b7, #d1fae5);
}

/* Case 3: trust-item 4 - Couleur subtile pêche */
.trust-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.3) 0%, rgba(253, 230, 138, 0.4) 100%);
    border-color: rgba(245, 158, 11, 0.15);
}

.trust-item:nth-child(4) i {
    color: #fbbf24;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-section .btn-secondary:hover {
    background: var(--bg-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer a {
    color: white !important;
}

.footer ul li {
    color: white !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%,
        var(--purple-accent) 50%,
        var(--accent-color) 75%,
        var(--primary-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.footer-section p {
    color: white;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: white !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white !important;
    opacity: 0.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: white;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 1.5rem;
    color: white;
}

/* ============================================
   SOCIAL LINKS - STYLES ADAPTATIFS
   ============================================ */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Style par défaut : pour sections à fond CLAIR (page contact, sections blanches) */
.social-links a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--purple-accent));
    opacity: 0;
    transition: var(--transition);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.social-links a i {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.1rem;
}

/* Style spécifique pour le FOOTER (fond sombre) */
footer .social-links a {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

footer .social-links a::before {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Style pour page de contact avec classe social-link */
.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
    font-weight: 500;
    min-width: 150px;
}

.social-link:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}

.social-link i {
    font-size: 1.25rem;
}

.social-link span {
    font-size: 0.95rem;
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info i {
    color: white;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal p {
    color: white;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: white !important;
    text-decoration: none;
}

.legal-links a:hover {
    opacity: 0.8;
}

.footer-certifications {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-certifications span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: white;
    font-size: 0.9rem;
}

.footer-certifications i {
    color: white;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 5rem 0 2.5rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.page-header-gradient {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--purple-accent) 100%);
}

/* ============================================
   CREDIT DETAILS
   ============================================ */
.credit-detail {
    padding: 4rem 0;
}

.credit-detail.alternate {
    background: var(--bg-light);
}

.detail-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.detail-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.detail-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.detail-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-info ul {
    list-style: none;
}

.detail-info ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-info ul i {
    color: var(--secondary-color);
}

.condition-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    margin-bottom: 0.75rem;
    border-radius: 8px;
}

.condition-label {
    color: var(--text-light);
}

.condition-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.detail-requirements {
    margin: 2rem 0;
}

.detail-requirements h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.requirements-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.requirement-badge {
    background: var(--bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--border-color);
}

.requirement-badge i {
    color: var(--primary-color);
}

/* ============================================
   APPLICATION FORM
   ============================================ */
.application-section {
    padding: 2rem 0 4rem;
}

.mobile-form-intro {
    display: none;
}

@media (max-width: 968px) {
    .mobile-form-intro {
        display: block;
        text-align: center;
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        border-radius: 16px;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-lg);
    }

    .mobile-form-intro h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .mobile-form-intro p {
        font-size: 1rem;
        opacity: 0.95;
        margin: 0;
    }
}

.form-step h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.select-large,
.input-large {
    font-size: 1rem;
    padding: 0.875rem;
}

.credit-preview {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.preview-item {
    text-align: center;
}

.preview-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.preview-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   APPLICATION FORM - OLD STYLES
   ============================================ */

.application-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 968px) {
    /* Réduire le page-header sur mobile pour la page de demande */
    .page-header {
        padding: 2rem 0 1rem;
        display: none; /* Masquer complètement sur mobile */
    }

    .application-section {
        padding: 1rem 0 3rem;
        margin-top: 80px; /* Compenser le header fixe */
    }

    .application-layout {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .application-form {
        order: 1;
        width: 100%;
    }

    .application-sidebar {
        order: 2;
        width: 100%;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 3px solid var(--border-color);
    }

    .application-sidebar::before {
        content: 'Informações Úteis';
        display: block;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }
}

.application-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .application-form {
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .form-progress {
        background: white;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-md);
    }

    .form-step {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.progress-step.active .progress-number,
.progress-step.completed .progress-number {
    background: var(--primary-color);
    color: white;
}

.progress-step span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.progress-step.active span {
    color: var(--primary-color);
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.credit-type-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.credit-type-option {
    position: relative;
    cursor: pointer;
}

.credit-type-option input {
    position: absolute;
    opacity: 0;
}

.option-content {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    background: white;
}

.option-content i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: block;
}

.credit-type-option input:checked + .option-content {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: white;
}

.credit-type-option input:checked + .option-content i {
    color: white;
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

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

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.confirmation-summary {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-light);
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   APPLICATION SIDEBAR
   ============================================ */
.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .application-sidebar {
        background: var(--bg-light);
        padding: 2rem 1rem;
        border-radius: 12px;
        margin-top: 3rem;
    }

    .sidebar-info-section {
        border-top: 2px solid var(--border-color);
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .sidebar-info-section:first-child {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
}

.sidebar-info-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.info-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
}

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

@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.info-icon.green {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.info-icon.blue {
    background: linear-gradient(135deg, var(--secondary-color), var(--cyan-accent));
}

.info-icon.purple {
    background: linear-gradient(135deg, var(--purple-accent), var(--pink-accent));
}

.info-icon.orange {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
}

.info-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.info-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.section-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.doc-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.help-content {
    text-align: center;
}

.help-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.help-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.help-contact-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.help-contact-item i {
    color: var(--primary-color);
}

.help-contact-item:hover i {
    color: white;
}

.btn-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.modal-icon.success {
    background: var(--secondary-color);
    color: white;
}

.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-intro .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mission-values {
    background: var(--bg-light);
    padding: 4rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.why-choose {
    background: var(--bg-light);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   PROCESS PAGE
   ============================================ */
.process-section {
    padding: 4rem 0;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-marker span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.timeline-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-features {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.timeline-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.timeline-features i {
    color: var(--secondary-color);
}

.requirements-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.requirement-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirement-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.requirement-card p {
    color: var(--text-light);
}

.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-side > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-method {
    display: flex;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.method-info p {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.method-detail {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.social-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.map-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .calculator-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .quick-faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header .comp-item:first-child,
    .comparison-row .comp-item:first-child {
        display: none;
    }

    .comparison-header .comp-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

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

    .detail-content {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .application-layout {
        grid-template-columns: 1fr;
    }

    .application-sidebar {
        order: -1;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-progress {
        overflow-x: auto;
    }

    .progress-step span {
        font-size: 0.7rem;
    }

    .credit-type-selection {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .credit-grid,
    .advantages-grid,
    .steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .credit-type-selection {
        grid-template-columns: 1fr;
    }

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

    .story-stats {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .calc-visual {
        padding: 2rem;
    }

    .calc-line {
        font-size: 1.2rem;
    }

    .calc-line:first-child {
        font-size: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    /* Social Links - Amélioration Mobile */
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        box-shadow: 0 3px 10px rgba(5, 150, 105, 0.35);
    }

    .social-link {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        min-width: 140px;
    }

    .social-link i {
        font-size: 1.15rem;
    }
}

/* ============================================
   SOCIAL LINKS - RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    footer .social-links {
        justify-content: center;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode detection pour meilleure visibilité */
@media (prefers-color-scheme: dark) {
    .social-links a {
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
    }
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta-button {
    position: fixed;
    right: -350px;
    bottom: 30px;
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-cta-button.show {
    right: 20px;
}

.floating-btn-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    min-width: 220px;
}

.floating-btn-link:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.floating-btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.floating-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.floating-btn-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.floating-btn-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.floating-btn-arrow {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #10b981;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-btn-link:hover .floating-btn-arrow {
    transform: translateX(5px);
}

/* Animation pulse */
@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(16, 185, 129, 0.6);
    }
}

.floating-cta-button.show .floating-btn-link {
    animation: pulse-shadow 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-cta-button {
        right: -300px;
        bottom: 20px;
    }

    .floating-cta-button.show {
        right: 15px;
    }

    .floating-btn-link {
        min-width: 190px;
        padding: 0.7rem 1rem;
        gap: 0.7rem;
    }

    .floating-btn-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .floating-btn-title {
        font-size: 0.9rem;
    }

    .floating-btn-subtitle {
        font-size: 0.7rem;
    }

    .floating-btn-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CORRECTIONS COMPLÈTES MOBILE ANDROID - COMPATIBILITÉ TOTALE
   ═══════════════════════════════════════════════════════════════ */

/* Support navigateurs Android - Fix zoom et rendering */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix images débordantes sur Android */
img {
    max-width: 100%;
    height: auto;
}

/* Corrections globales mobiles (max-width: 640px) */
@media (max-width: 640px) {
    /* Fix overflow horizontal */
    body,
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Container mobile */
    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    /* Sections */
    section {
        padding: 2.5rem 0 !important;
    }

    .advantages-super-modern {
        padding: 2.5rem 0 !important;
        overflow-x: hidden !important;
    }

    /* Titres mobile */
    .advantages-main-title,
    h1.advantages-main-title {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
        padding: 0 0.5rem !important;
        word-wrap: break-word !important;
    }

    .advantages-main-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        padding: 0 0.5rem !important;
    }

    /* Layout deux colonnes → une colonne */
    .advantages-two-column-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .advantages-visual-column,
    .advantages-features-column {
        width: 100% !important;
        padding: 0 0.5rem !important;
    }

    /* Image visuelle */
    .visual-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        transform: none !important;
    }

    .visual-card img {
        width: 100% !important;
        max-height: 280px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }

    /* Trust indicators en 2 colonnes sur mobile */
    .trust-indicators {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        justify-content: space-between !important;
        padding: 1rem !important;
    }

    .trust-item {
        flex: 0 0 calc(50% - 0.5rem) !important;
        min-width: 0 !important;
        padding: 0.75rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .trust-item i {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }

    /* Features en colonnes */
    .advantages-features-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .feature-modern-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 1.25rem !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .feature-icon-modern {
        flex-shrink: 0 !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
        border-radius: 12px !important;
    }

    .feature-text-modern {
        flex: 1 !important;
        text-align: left !important;
    }

    .feature-text-modern h3 {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        color: #1f2937 !important;
    }

    .feature-text-modern p {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        color: #6b7280 !important;
        margin: 0 !important;
    }

    /* CTA Button */
    .cta-button-container {
        padding: 1rem 0.5rem !important;
        margin-top: 1.5rem !important;
    }

    .btn-gradient-modern {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
}

/* Corrections très petits écrans (max-width: 380px) */
@media (max-width: 380px) {
    .container {
        padding: 0 0.75rem !important;
    }

    .advantages-main-title {
        font-size: 1.45rem !important;
    }

    .advantages-main-subtitle {
        font-size: 0.9rem !important;
    }

    .trust-item {
        font-size: 0.8rem !important;
        padding: 0.65rem !important;
    }

    .feature-icon-modern {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }

    .feature-text-modern h3 {
        font-size: 1rem !important;
    }

    .feature-text-modern p {
        font-size: 0.85rem !important;
    }

    .btn-gradient-modern {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
}

/* Support tactile Android */
@media (hover: none) and (pointer: coarse) {
    /* Zones tactiles optimales */
    button,
    a,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Feedback tactile */
    button:active,
    a:active,
    .btn:active {
        opacity: 0.85;
        transform: scale(0.97);
    }

    /* Désactiver animations hover sur tactile */
    .feature-modern-item:hover,
    .advantage-card:hover,
    *:hover {
        transform: none !important;
    }
}

/* Fix performance Android - Simplifier animations */
@media (max-width: 640px) {
    /* Désactiver transformations 3D complexes */
    .visual-card,
    .feature-card,
    .advantage-card {
        transform: none !important;
        perspective: none !important;
    }

    /* Simplifier ombres pour performance */
    .card,
    .feature-modern-item,
    .advantage-feature-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    /* Simplifier animations */
    * {
        transition: all 0.2s ease !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FIN DES CORRECTIONS MOBILE ANDROID
   ═══════════════════════════════════════════════════════════════ */