
/* ===== IMPORTANCE SECTION ===== */
.importance-section {
    padding: 100px 40px;
    background: #F8F9FA ;
    margin-top: 46px;
}

.importance-container,
.importance-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.importance-content h2,
.importance-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 25px;
    position: relative;
}

.importance-content h2::after,
.importance-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #B87854;
    border-radius: 2px;
}

.importance-intro {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.importance-list {
    list-style: none;
    padding: 0;
}

.importance-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.importance-list li:last-child {
    border-bottom: none;
}

.importance-list li:hover {
    transform: translateX(10px);
    color: #B87854;
}

.importance-list li i {
    color: #B87854;
    font-size: 1.2rem;
    min-width: 20px;
}

.importance-cta,
.chart-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.importance-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
}

.importance-cta-icon {
    font-size: 4rem;
    color: #B87854;
    margin-bottom: 20px;
}

.importance-cta-text {
    color: #4A5568;
    margin-bottom: 30px;
}

.importance-cta-btn,
.btn-call-to-action {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 120, 84, 0.3);
}

.importance-cta-btn:hover,
.btn-call-to-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 120, 84, 0.4);
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 100px 40px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
}

/* Cards Mobile & Desktop */
.status-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.status-card,
.card-clean {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.status-card:hover,
.card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color:#acb5c6;
}

.status-card.recommended {
    border-color: #B87854;
    background: linear-gradient(135deg, rgba(184, 120, 84, 0.05), rgba(184, 120, 84, 0.02));
}

.status-pill {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4A5568 0%, #6e7e9a 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.status-pill.recommended,
.pill-eurl {
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
}

/* Uniformiser toutes les pills avec la charte CELER */
.pill-micro,
.pill-ei,
.pill-sasu,
.pill-sarl,
.pill-sci-ir,
.pill-sci-is,
.pill-lmnp {
    background: linear-gradient(135deg, #4A5568 0%, #8699ba 100%);
}

.recommended-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e7986a;
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.status-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 5px;
}

.status-target {
    color: #4A5568;
    font-size: 0.9rem;
}

.cost-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #d18c64;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.text-pros {
    color: #059669;
    font-weight: 500;
}

.text-cons {
    color: #dc2626;
    font-weight: 500;
}

.highlight-row {
    background: linear-gradient(90deg, rgba(184, 120, 84, 0.1), rgba(184, 120, 84, 0.05));
    border-left: 4px solid #B87854;
}

.table-row {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.4);
    border-left-color: #c1c8d5;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== CRITERIA SECTION ===== */
.criteria-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 50px auto 0;
}

.criterion-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #c5ccda;
    transition: all 0.3s ease;
}

.criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.criterion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.criterion-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B3B5F;
}

.criterion-text {
    color: #4A5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.final-cta-section,
.cta-section {
    padding: 100px 40px;
    background: #F8F9FA;
    text-align: center;
    color: #1B3B5F;
}

.final-cta-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #B87854;
}

.final-cta-title,
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1B3B5F;
}

.final-cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta-btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: #b87f5e;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(87, 85, 83, 0.3);
}

.final-cta-btn:hover,
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 182, 179, 0.4);
    background: #785a4d;
}

/* ===== ANIMATIONS ===== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container,
    .hero-content-grid,
    .importance-container,
    .importance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .hero-juridique,
    .hero-modern {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .hero-btn-primary,
    .hero-btn-secondary,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .importance-section,
    .comparison-section,
    .criteria-section,
    .final-cta-section,
    .cta-section {
        padding: 60px 20px;
    }

    .status-grid-info,
    .status-pros-cons {
        grid-template-columns: 1fr;
    }

    .importance-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .chart-container {
        padding: 20px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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


}