/* =======================================================
   2. FIX COULEURS HERO DATA
   ======================================================= */

/* HERO PREMIUM */
    .hero-premium {
        background: linear-gradient(135deg, #1e293b, #0f172a);
        color: white;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .hero-premium::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(62,146,204,0.15), transparent);
        border-radius: 50%;
    }

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

    .hero-badge-premium {
        display: inline-block;
        background: rgba(212, 175, 55, 0.2);
        color: #D4AF37;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-title-premium {
		color: #ffffff !important;
		text-shadow: 0 4px 10px rgba(0,0,0,0.3);
        font-family: 'Sora', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-description-premium {
		color: #cbd5e1 !important; /* Gris clair bleuté très lisible */
		font-size: 1.15rem;
		max-width: 700px;
		margin: 0 auto 40px auto;
		opacity: 0.9;
        line-height: 1.7;
    }

    .hero-features {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .hero-features li {
        font-size: 1.1rem;
        padding: 12px 0;
        opacity: 0.95;
    }

    .btn-explore {
        display: inline-block;
        background: linear-gradient(135deg, #D4AF37, #DAA520);
        color: white;
        padding: 18px 40px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s;
    }

    .btn-explore:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

    .premium-card-showcase {
        background: white;
        color: #1E293B;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .showcase-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3E92CC, #0A2463);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .premium-card-showcase h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: #0A2463;
    }

    .showcase-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        padding: 25px 0;
        border-top: 2px solid #E2E8F0;
        border-bottom: 2px solid #E2E8F0;
    }

    .showcase-stats .stat {
        text-align: center;
    }

    .showcase-stats .stat-value {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0A2463;
        margin-bottom: 5px;
    }

    .showcase-stats .stat-label {
        font-size: 0.85rem;
        color: #64748B;
    }

    .showcase-excerpt {
        color: #64748B;
        line-height: 1.7;
    }

    /* DÉCRYPTAGES GRID */
    .decryptages-list {
        padding: 80px 0;
        background: #F8FAFC;
    }

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

    .section-title {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #64748B;
    }

    .decryptages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 80px;
    }

    .decryptage-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
        position: relative;
    }

    .decryptage-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    .premium-overlay-card {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #D4AF37, #DAA520);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
        font-size: 0.85rem;
        z-index: 10;
    }

    .decryptage-image {
        height: 280px;
        overflow: hidden;
    }

    .decryptage-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

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

    .decryptage-content {
        padding: 35px;
    }

    .decryptage-meta-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .decryptage-category {
        background: #3E92CC;
        color: white;
        padding: 6px 15px;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .decryptage-date {
        color: #94A3B8;
        font-size: 0.9rem;
    }

    .decryptage-title {
        font-family: 'Sora', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .decryptage-title a {
        color: #1E293B;
        text-decoration: none;
        transition: color 0.2s;
    }

    .decryptage-title a:hover {
        color: #3E92CC;
    }

    .decryptage-excerpt {
        color: #64748B;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .decryptage-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 25px;
        border-top: 2px solid #E2E8F0;
    }

    .decryptage-author {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .decryptage-author img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid #E2E8F0;
    }

    .author-name {
        display: block;
        font-weight: 600;
        color: #1E293B;
        font-size: 0.95rem;
    }

    .author-title {
        display: block;
        font-size: 0.85rem;
        color: #94A3B8;
    }

    .btn-read {
        background: linear-gradient(135deg, #3E92CC, #0A2463);
        color: white;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.2s;
    }

    .btn-read:hover {
        transform: translateX(5px);
    }

    /* CTA PREMIUM */
    .cta-premium-section {
        margin-top: 80px;
    }

    .cta-premium-card {
        background: linear-gradient(135deg, #0A2463, #1e293b);
        color: white;
        border-radius: 24px;
        padding: 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-premium-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212,175,55,0.1), transparent);
        border-radius: 50%;
    }

    .cta-premium-card > * {
        position: relative;
        z-index: 1;
    }

    .cta-icon {
        width: 100px;
        height: 100px;
        background: rgba(212, 175, 55, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        margin: 0 auto 30px;
    }

    .cta-premium-card h3 {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-premium-card > p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 35px;
    }

    .btn-cta-premium {
        display: inline-block;
        background: linear-gradient(135deg, #D4AF37, #DAA520);
        color: white;
        padding: 20px 50px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.3s;
    }

    .btn-cta-premium:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }

    .cta-note {
        margin-top: 20px;
        font-size: 0.95rem;
        opacity: 0.8;
    }

    /* THÉMATIQUES */
    .thematiques-section {
        padding: 80px 0;
    }

    .thematiques-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .thematique-card {
        background: white;
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
    }

    .thematique-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .thematique-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 20px;
    }

    .thematique-card h4 {
        font-family: 'Sora', sans-serif;
        font-size: 1.3rem;
        color: #0A2463;
        margin-bottom: 12px;
    }

    .thematique-card p {
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .thematique-count {
        display: inline-block;
        background: #3E92CC;
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
    }

    /* MÉTHODOLOGIE */
    .methodology-section {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        padding: 80px 0;
    }

    .methodology-content h2 {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        text-align: center;
        color: #0A2463;
        margin-bottom: 60px;
    }

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

    .method-step {
        background: white;
        border-radius: 16px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3E92CC, #0A2463);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 auto 20px;
    }

    .method-step h4 {
        font-family: 'Sora', sans-serif;
        font-size: 1.2rem;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .method-step p {
        color: #64748B;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .hero-grid-premium {
            grid-template-columns: 1fr;
        }

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

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

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

    @media (max-width: 768px) {
        .hero-title-premium {
            font-size: 2.5rem;
        }

        .thematiques-grid,
        .methodology-grid {
            grid-template-columns: 1fr;
        }

        .cta-premium-card {
            padding: 40px 30px;
        }
    }
