/* CSS spécifique pour /structures-sceniques - extrait depuis la version live */

/* Bloc #1 */
:root {
        --primary-dark: #131521;
        --primary-light: #FAF2E5;
        --accent-green: #76E49B;
        --accent-purple: #423ABB;
        --text-light: #FAF2E5;
        --text-secondary: rgba(250, 242, 229, 0.7);
        --spacing-xs: 0.5rem;
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
        --spacing-xl: 8rem;
        --border-radius: 4px;
        --transition-normal: 0.3s ease;
    }

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

    body {
        font-family: 'Schibsted Grotesk', sans-serif;
        background-color: var(--primary-dark);
        color: var(--text-light);
        line-height: 1.6;
    }

    .hero-structures {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #0F1219 0%, #131521 50%, #1B1F2D 100%);
        overflow: hidden;
        z-index: 1;
    }

    .hero-bg-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0.04;
    }

    .hero-structural-pattern {
        position: absolute;
        width: 400px;
        height: 400px;
        background-image: 
            linear-gradient(45deg, var(--accent-green) 25%, transparent 25%),
            linear-gradient(-45deg, var(--accent-green) 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, var(--accent-green) 75%),
            linear-gradient(-45deg, transparent 75%, var(--accent-green) 75%);
        background-size: 30px 30px;
        background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
        top: 10%;
        right: -10%;
        animation: rotate 90s infinite linear;
    }

    .hero-grid-overlay {
        position: absolute;
        width: 300px;
        height: 300px;
        background-image: 
            linear-gradient(var(--accent-purple) 1px, transparent 1px),
            linear-gradient(90deg, var(--accent-purple) 1px, transparent 1px);
        background-size: 40px 40px;
        bottom: 10%;
        left: -5%;
        animation: float 40s infinite ease-in-out;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

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

    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
        min-height: 80vh;
    }

    .hero-text {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards 0.1s;
    }

    .hero-breadcrumb {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: var(--spacing-md);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .breadcrumb-link {
        color: var(--accent-green);
        text-decoration: none;
        transition: color var(--transition-normal);
    }

    .breadcrumb-link:hover {
        color: var(--accent-purple);
    }

    .breadcrumb-separator {
        color: var(--accent-green);
        opacity: 0.5;
    }

    .breadcrumb-current {
        color: var(--text-light);
        font-weight: 500;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(118, 228, 155, 0.1);
        border: 1px solid rgba(118, 228, 155, 0.3);
        border-radius: 50px;
        padding: 10px 24px;
        margin-bottom: 24px;
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        color: var(--accent-green);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-badge-icon {
        width: 18px;
        height: 18px;
        background: var(--accent-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-badge-icon svg {
        width: 12px;
        height: 12px;
        fill: var(--primary-dark);
    }

    .hero-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: clamp(2.5rem, 5vw, 3.8rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 24px;
        text-transform: uppercase;
        color: var(--text-light);
        letter-spacing: -0.02em;
    }

    .hero-title .highlight {
        background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.4rem;
        color: var(--accent-green);
        font-weight: 600;
        margin-bottom: 32px;
        line-height: 1.4;
    }

    .hero-description {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.2rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 90%;
    }

    .hero-description strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .hero-description .highlight {
        color: var(--accent-green);
        font-weight: 600;
    }

    .hero-problems {
        margin-bottom: 40px;
    }

    .problem-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .problem-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: rgba(239, 68, 68, 0.05);
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: var(--border-radius);
        transition: all var(--transition-normal);
    }

    .problem-item:hover {
        border-color: rgba(239, 68, 68, 0.4);
        background: rgba(239, 68, 68, 0.08);
    }

    .problem-icon {
        width: 24px;
        height: 24px;
        background: rgba(239, 68, 68, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .problem-icon svg {
        width: 12px;
        height: 12px;
        fill: #EF4444;
    }

    .problem-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .problem-text strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .hero-buttons {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 20px 32px;
        border-radius: 12px;
        font-family: 'Broad Sans', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 1.1rem;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.4s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        min-width: 240px;
    }

    .hero-button.primary {
        background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
        color: var(--text-light);
        border: none;
    }

    .hero-button.secondary {
        background: transparent;
        border: 2px solid var(--accent-green);
        color: var(--text-light);
    }

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

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

    .hero-button:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .hero-button.primary:hover {
        box-shadow: 0 15px 30px rgba(118, 228, 155, 0.4);
    }

    .hero-button.secondary:hover {
        background: rgba(118, 228, 155, 0.1);
        border-color: var(--accent-purple);
        box-shadow: 0 15px 30px rgba(118, 228, 155, 0.2);
    }

    .hero-button svg {
        width: 20px;
        height: 20px;
        margin-left: 12px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }

    .hero-button:hover svg {
        transform: translateX(5px);
    }

    .hero-visual {
        position: relative;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards 0.3s;
    }

    .hero-technical-card {
        background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
        border: 1px solid rgba(118, 228, 155, 0.2);
        border-radius: 20px;
        padding: 40px;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .hero-technical-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(118, 228, 155, 0.05), rgba(66, 58, 187, 0.05));
        border-radius: 20px;
        z-index: -1;
    }

    .technical-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 24px;
        text-transform: uppercase;
        text-align: center;
    }

    .technical-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .metric-item {
        text-align: center;
        padding: 20px 16px;
        background: rgba(118, 228, 155, 0.05);
        border: 1px solid rgba(118, 228, 155, 0.1);
        border-radius: 8px;
        transition: all var(--transition-normal);
    }

    .metric-item:hover {
        border-color: rgba(118, 228, 155, 0.3);
        transform: translateY(-2px);
    }

    .metric-value {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-green);
        display: block;
        margin-bottom: 8px;
    }

    .metric-label {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .technical-note {
        background: rgba(66, 58, 187, 0.05);
        border: 1px solid rgba(66, 58, 187, 0.2);
        border-radius: 8px;
        padding: 20px;
        text-align: center;
    }

    .technical-note-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .technical-note-text strong {
        color: var(--text-light);
        font-weight: 600;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Media Queries */
    @media (max-width: 1200px) {
        .hero-content {
            gap: 60px;
        }
        
        .hero-title {
            font-size: 2.8rem;
        }
    }

    @media (max-width: 992px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }

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

    @media (max-width: 768px) {
        .hero-structures {
            min-height: auto;
            padding: 100px 0 80px;
        }
        
        .hero-title {
            font-size: 2.4rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
            max-width: 100%;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .hero-button {
            width: 100%;
            max-width: 320px;
            min-width: unset;
        }

        .technical-metrics {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .hero-container {
            padding: 0 16px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-technical-card {
            padding: 24px;
        }
    }

/* Bloc #2 */
/* Reprendre exactement le même CSS que dans l'exemple mais sans modifications */
    /* Le CSS est identique à celui fourni dans paste-2.txt */

    :root {
        --primary-dark: #131521;
        --primary-light: #FAF2E5;
        --accent-green: #76E49B;
        --accent-purple: #423ABB;
        --text-light: #FAF2E5;
        --text-secondary: rgba(250, 242, 229, 0.7);
        --spacing-xs: 0.5rem;
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
        --spacing-xl: 8rem;
        --border-radius: 4px;
        --transition-normal: 0.3s ease;
    }

    .defis-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(135deg, #131521 0%, #1B1F2D 50%, #0F1219 100%);
        overflow: hidden;
        z-index: 1;
    }

    .defis-diagonal-top {
        position: absolute;
        top: -8vw;
        left: 0;
        width: 100%;
        height: 8vw;
        background-color: #0F1219;
        transform: skewY(1.5deg);
        transform-origin: top right;
        z-index: -1;
        border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }

    .defis-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .defis-header {
        text-align: center;
        margin-bottom: 80px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards 0.1s;
    }

    .defis-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.3);
        border-radius: 50px;
        padding: 8px 20px;
        margin-bottom: 16px;
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        color: #F59E0B;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .defis-badge-icon {
        width: 16px;
        height: 16px;
        background: #F59E0B;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .defis-badge-icon svg {
        width: 10px;
        height: 10px;
        fill: var(--text-light);
    }

    .defis-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: var(--text-light);
        position: relative;
        display: block;
        text-align: center;
    }

    .defis-title .highlight {
        background: linear-gradient(135deg, #F59E0B, var(--accent-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .defis-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(to right, #F59E0B, var(--accent-green));
        border-radius: 2px;
    }

    .defis-description {
        color: var(--text-secondary);
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .defis-description strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .defis-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 80px;
    }

    .defi-card {
        background: linear-gradient(135deg, rgba(19, 21, 33, 0.9), rgba(27, 31, 45, 0.95));
        border: 1px solid rgba(255, 193, 7, 0.2);
        border-radius: 20px;
        padding: 50px 40px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px);
    }

    .defi-card:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.3s; }
    .defi-card:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.5s; }
    .defi-card:nth-child(3) { animation: fadeUp 0.8s ease forwards 0.7s; }
    .defi-card:nth-child(4) { animation: fadeUp 0.8s ease forwards 0.9s; }

    .defi-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.02), rgba(66, 58, 187, 0.02));
        z-index: -1;
    }

    .defi-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }

    .defi-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #F59E0B, var(--accent-green));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .defi-icon svg {
        width: 28px;
        height: 28px;
        fill: var(--primary-dark);
    }

    .defi-title-block h3 {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-light);
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .defi-subtitle {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1rem;
        color: #F59E0B;
        font-weight: 600;
    }

    .defi-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 32px;
    }

    .defi-problem {
        position: relative;
    }

    .problem-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #F59E0B;
        text-transform: uppercase;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .problem-title svg {
        width: 16px;
        height: 16px;
        fill: #F59E0B;
    }

    .problem-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .problem-text strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .problem-consequences {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .consequence-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        color: var(--text-secondary);
        padding: 8px 0;
    }

    .consequence-icon {
        width: 16px;
        height: 16px;
        background: rgba(255, 193, 7, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .consequence-icon svg {
        width: 10px;
        height: 10px;
        fill: #F59E0B;
    }

    .defi-reality {
        position: relative;
    }

    .reality-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--accent-green);
        text-transform: uppercase;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .reality-title svg {
        width: 16px;
        height: 16px;
        fill: var(--accent-green);
    }

    .reality-examples {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .reality-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(118, 228, 155, 0.05);
        border: 1px solid rgba(118, 228, 155, 0.1);
        border-radius: 8px;
        transition: all var(--transition-normal);
    }

    .reality-item:hover {
        border-color: rgba(118, 228, 155, 0.3);
        background: rgba(118, 228, 155, 0.08);
    }

    .reality-icon {
        width: 20px;
        height: 20px;
        background: var(--accent-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .reality-icon svg {
        width: 12px;
        height: 12px;
        fill: var(--primary-dark);
    }

    .reality-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .reality-text strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .defi-note {
        background: rgba(66, 58, 187, 0.05);
        border: 1px solid rgba(66, 58, 187, 0.2);
        border-radius: 12px;
        padding: 24px;
        text-align: center;
    }

    .note-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .note-description {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .note-description strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .note-description .highlight {
        color: var(--accent-green);
        font-weight: 600;
    }

    /* Background decoration */
    .defis-bg-element {
        position: absolute;
        opacity: 0.04;
        z-index: -1;
    }

    .defis-circuit {
        width: 300px;
        height: 300px;
        background-image: 
            linear-gradient(45deg, #F59E0B 25%, transparent 25%),
            linear-gradient(-45deg, #F59E0B 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, #F59E0B 75%),
            linear-gradient(-45deg, transparent 75%, #F59E0B 75%);
        background-size: 20px 20px;
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        top: 20%;
        right: 5%;
        animation: float 40s infinite ease-in-out;
    }

    .defis-dots {
        width: 200px;
        height: 200px;
        background-image: radial-gradient(var(--accent-green) 2px, transparent 2px);
        background-size: 25px 25px;
        bottom: 15%;
        left: 8%;
        animation: pulse 6s infinite ease-in-out;
    }

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

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

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Media Queries */
    @media (max-width: 992px) {
        .defi-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .defi-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .defis-section {
            padding: 80px 0;
        }
        
        .defis-title {
            font-size: 2.4rem;
        }
        
        .defis-description {
            font-size: 1.1rem;
        }
        
        .defi-card {
            padding: 32px 24px;
        }
        
        .defi-header h3 {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 576px) {
        .defis-container {
            padding: 0 16px;
        }
        
        .defis-title {
            font-size: 2rem;
        }
        
        .defi-card {
            padding: 24px 16px;
        }
    }

/* Bloc #3 */
:root {
            --primary-dark: #131521;
            --primary-light: #FAF2E5;
            --accent-green: #76E49B;
            --accent-purple: #423ABB;
            --text-light: #FAF2E5;
            --text-secondary: rgba(250, 242, 229, 0.7);
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 8rem;
            --border-radius: 4px;
            --transition-normal: 0.3s ease;
        }

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

        body {
            font-family: 'Schibsted Grotesk', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        .anticiper-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #0F1219 0%, #131521 50%, #1B1F2D 100%);
            overflow: hidden;
            z-index: 1;
        }

        .anticiper-diagonal-top {
            position: absolute;
            top: -8vw;
            left: 0;
            width: 100%;
            height: 8vw;
            background-color: #131521;
            transform: skewY(-1.5deg);
            transform-origin: top left;
            z-index: -1;
            border-bottom: 1px solid rgba(118, 228, 155, 0.1);
        }

        .anticiper-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .anticiper-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 0.1s;
        }

        .anticiper-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(118, 228, 155, 0.1);
            border: 1px solid rgba(118, 228, 155, 0.3);
            border-radius: 50px;
            padding: 8px 20px;
            margin-bottom: 16px;
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.9rem;
            color: var(--accent-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .anticiper-badge-icon {
            width: 16px;
            height: 16px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .anticiper-badge-icon svg {
            width: 10px;
            height: 10px;
            fill: var(--primary-dark);
        }

        .anticiper-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: var(--text-light);
            position: relative;
            display: inline-block;
        }

        .anticiper-title .highlight {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .anticiper-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
            border-radius: 2px;
        }

        .anticiper-description {
            color: var(--text-secondary);
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .anticiper-description strong {
            color: var(--text-light);
            font-weight: 600;
        }

        .anticiper-description .highlight {
            color: var(--accent-green);
            font-weight: 600;
        }

        /* Checklist Principal */
        .checklist-principal {
            background: linear-gradient(135deg, rgba(19, 21, 33, 0.9), rgba(27, 31, 45, 0.95));
            border: 2px solid rgba(118, 228, 155, 0.3);
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards 0.3s;
        }

        .checklist-principal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(118, 228, 155, 0.05), rgba(66, 58, 187, 0.05));
            z-index: -1;
        }

        .checklist-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .checklist-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .checklist-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--primary-dark);
        }

        .checklist-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .checklist-subtitle {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .checklist-category {
            background: rgba(118, 228, 155, 0.03);
            border: 1px solid rgba(118, 228, 155, 0.1);
            border-radius: 12px;
            padding: 32px 24px;
            transition: all var(--transition-normal);
        }

        .checklist-category:hover {
            border-color: rgba(118, 228, 155, 0.3);
            background: rgba(118, 228, 155, 0.05);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .category-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--primary-dark);
        }

        .category-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
        }

        .checklist-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(118, 228, 155, 0.05);
        }

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

        .item-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-green);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .item-checkbox:hover {
            background: rgba(118, 228, 155, 0.1);
        }

        .item-checkbox.checked {
            background: var(--accent-green);
            border-color: var(--accent-green);
        }

        .item-checkbox.checked svg {
            width: 12px;
            height: 12px;
            fill: var(--primary-dark);
        }

        .item-text {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .item-text strong {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Types d'Événements */
        .types-evenements {
            margin-bottom: 80px;
        }

        .types-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 0.5s;
        }

        .types-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .types-description {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

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

        .type-card {
            background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
            border: 1px solid rgba(118, 228, 155, 0.1);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all var(--transition-normal);
            opacity: 0;
            transform: translateY(40px);
            position: relative;
            overflow: hidden;
        }

        .type-card:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.7s; }
        .type-card:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.9s; }
        .type-card:nth-child(3) { animation: fadeUp 0.8s ease forwards 1.1s; }

        .type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(118, 228, 155, 0.02), rgba(66, 58, 187, 0.02));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .type-card:hover {
            border-color: rgba(118, 228, 155, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .type-card:hover::before {
            opacity: 1;
        }

        .type-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: transform var(--transition-normal);
            position: relative;
            z-index: 2;
        }

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

        .type-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--primary-dark);
        }

        .type-name {
            font-family: 'Broad Sans', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
            text-transform: uppercase;
            position: relative;
            z-index: 2;
        }

        .type-description {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .type-points {
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            z-index: 2;
        }

        .type-point {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-align: left;
        }

        .point-icon {
            width: 12px;
            height: 12px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .point-icon svg {
            width: 8px;
            height: 8px;
            fill: var(--primary-dark);
        }

        /* CTA Resources */
        .resources-cta {
            background: rgba(66, 58, 187, 0.05);
            border: 1px solid rgba(66, 58, 187, 0.2);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards 1.3s;
        }

        .resources-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .resources-description {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .resources-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .resource-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 28px;
            border-radius: 8px;
            font-family: 'Broad Sans', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all var(--transition-normal);
            text-decoration: none;
            min-width: 200px;
        }

        .resource-button.primary {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            color: var(--text-light);
            border: none;
        }

        .resource-button.secondary {
            background: transparent;
            border: 2px solid var(--accent-green);
            color: var(--text-light);
        }

        .resource-button:hover {
            transform: translateY(-3px);
        }

        .resource-button.primary:hover {
            box-shadow: 0 10px 20px rgba(118, 228, 155, 0.3);
        }

        .resource-button.secondary:hover {
            background: rgba(118, 228, 155, 0.1);
            border-color: var(--accent-purple);
        }

        .resource-button svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .resource-button:hover svg {
            transform: translateX(3px);
        }

        /* Background decoration */
        .anticiper-bg-element {
            position: absolute;
            opacity: 0.04;
            z-index: -1;
        }

        .anticiper-circles {
            width: 250px;
            height: 250px;
            border: 3px solid var(--accent-green);
            border-radius: 50%;
            top: 20%;
            right: 8%;
            animation: rotate 45s infinite linear;
        }

        .anticiper-grid {
            width: 200px;
            height: 200px;
            background-image: 
                linear-gradient(var(--accent-purple) 2px, transparent 2px),
                linear-gradient(90deg, var(--accent-purple) 2px, transparent 2px);
            background-size: 25px 25px;
            bottom: 15%;
            left: 5%;
            animation: float 35s infinite ease-in-out;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

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

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .checklist-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .types-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .resources-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .anticiper-section {
                padding: 80px 0;
            }
            
            .anticiper-title {
                font-size: 2.4rem;
            }
            
            .anticiper-description {
                font-size: 1.1rem;
            }
            
            .checklist-principal {
                padding: 32px 24px;
            }
            
            .type-card {
                padding: 24px 20px;
            }
        }

        @media (max-width: 576px) {
            .anticiper-container {
                padding: 0 16px;
            }
            
            .anticiper-title {
                font-size: 2rem;
            }
            
            .checklist-principal {
                padding: 24px 16px;
            }
            
            .resource-button {
                width: 100%;
                max-width: 280px;
                min-width: unset;
            }
        }

/* Bloc #4 */
:root {
            --primary-dark: #131521;
            --primary-light: #FAF2E5;
            --accent-green: #76E49B;
            --accent-purple: #423ABB;
            --text-light: #FAF2E5;
            --text-secondary: rgba(250, 242, 229, 0.7);
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 8rem;
            --border-radius: 4px;
            --transition-normal: 0.3s ease;
        }

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

        body {
            font-family: 'Schibsted Grotesk', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        .prestataires-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #131521 0%, #1B1F2D 50%, #0F1219 100%);
            overflow: hidden;
            z-index: 1;
        }

        .prestataires-diagonal-top {
            position: absolute;
            top: -8vw;
            left: 0;
            width: 100%;
            height: 8vw;
            background-color: #0F1219;
            transform: skewY(1.5deg);
            transform-origin: top right;
            z-index: -1;
            border-bottom: 1px solid rgba(118, 228, 155, 0.1);
        }

        .prestataires-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .prestataires-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 0.1s;
        }

        .prestataires-badge {
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            background: rgba(66, 58, 187, 0.1) !important;
            border: 1px solid rgba(66, 58, 187, 0.3) !important;
            border-radius: 50px !important;
            padding: 8px 20px !important;
            margin-bottom: 16px !important;
            font-family: 'Schibsted Grotesk', sans-serif !important;
            font-size: 0.9rem !important;
            color: var(--accent-purple) !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
        }

        .prestataires-badge-icon {
            width: 16px !important;
            height: 16px !important;
            background: var(--accent-purple) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .prestataires-badge-icon svg {
            width: 10px !important;
            height: 10px !important;
            fill: var(--text-light) !important;
        }

        .prestataires-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: var(--text-light);
            position: relative;
            display: inline-block;
        }

        .prestataires-title .highlight {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .prestataires-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-purple), var(--accent-green));
            border-radius: 2px;
        }

        .prestataires-description {
            color: var(--text-secondary);
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .prestataires-description strong {
            color: var(--text-light);
            font-weight: 600;
        }

        .prestataires-description .highlight {
            color: var(--accent-purple);
            font-weight: 600;
        }

        /* Compétences Essentielles */
        .competences-section {
            margin-bottom: 80px;
        }

        .competences-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 0.3s;
        }

        .competences-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .competences-subtitle {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

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

        .competence-card {
            background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
            border: 1px solid rgba(118, 228, 155, 0.2);
            border-radius: 16px;
            padding: 40px 32px;
            transition: all var(--transition-normal);
            opacity: 0;
            transform: translateY(40px);
            position: relative;
            overflow: hidden;
        }

        .competence-card:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.5s; }
        .competence-card:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.7s; }
        .competence-card:nth-child(3) { animation: fadeUp 0.8s ease forwards 0.9s; }
        .competence-card:nth-child(4) { animation: fadeUp 0.8s ease forwards 1.1s; }

        .competence-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(118, 228, 155, 0.02), rgba(66, 58, 187, 0.02));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .competence-card:hover {
            border-color: rgba(118, 228, 155, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .competence-card:hover::before {
            opacity: 1;
        }

        .competence-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .competence-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .competence-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-dark);
        }

        .competence-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            position: relative;
            z-index: 2;
        }

        .competence-description {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .competence-description strong {
            color: var(--text-light);
            font-weight: 600;
        }

        .competence-questions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .competence-question {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 12px 16px;
            background: rgba(66, 58, 187, 0.05);
            border: 1px solid rgba(66, 58, 187, 0.1);
            border-radius: 8px;
            transition: all var(--transition-normal);
        }

        .competence-question:hover {
            border-color: rgba(66, 58, 187, 0.3);
            background: rgba(66, 58, 187, 0.08);
        }

        .question-icon {
            width: 16px;
            height: 16px;
            background: var(--accent-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .question-icon svg {
            width: 10px;
            height: 10px;
            fill: var(--text-light);
        }

        .question-text {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            font-style: italic;
        }

        /* Signaux d'Alerte */
        .alertes-section {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(245, 158, 11, 0.08));
            border: 2px solid rgba(255, 193, 7, 0.2);
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 0.8s ease forwards 1.3s;
        }

        .alertes-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .alertes-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #F59E0B, #D97706);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: pulse-warning 3s infinite;
        }

        .alertes-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--text-light);
        }

        .alertes-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #F59E0B;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .alertes-subtitle {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .alertes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .alerte-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 20px;
            background: rgba(255, 193, 7, 0.05);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 8px;
            transition: all var(--transition-normal);
        }

        .alerte-item:hover {
            border-color: rgba(255, 193, 7, 0.4);
            background: rgba(255, 193, 7, 0.08);
        }

        .alerte-icon {
            width: 24px;
            height: 24px;
            background: #F59E0B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .alerte-icon svg {
            width: 12px;
            height: 12px;
            fill: var(--text-light);
        }

        .alerte-text {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .alerte-text strong {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Questions Techniques */
        .questions-section {
            margin-bottom: 80px;
        }

        .questions-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards 1.5s;
        }

        .questions-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .questions-subtitle {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .questions-categories {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .question-category {
            background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
            border: 1px solid rgba(118, 228, 155, 0.1);
            border-radius: 16px;
            padding: 32px 28px;
            opacity: 0;
            transform: translateY(40px);
        }

        .question-category:nth-child(1) { animation: fadeUp 0.8s ease forwards 1.7s; }
        .question-category:nth-child(2) { animation: fadeUp 0.8s ease forwards 1.9s; }
        .question-category:nth-child(3) { animation: fadeUp 0.8s ease forwards 2.1s; }

        .category-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .category-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-dark);
        }

        .category-title {
            font-family: 'Broad Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
        }

        .questions-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .question-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 20px;
            background: rgba(118, 228, 155, 0.03);
            border: 1px solid rgba(118, 228, 155, 0.1);
            border-radius: 8px;
            transition: all var(--transition-normal);
        }

        .question-item:hover {
            border-color: rgba(118, 228, 155, 0.3);
            background: rgba(118, 228, 155, 0.05);
        }

        .question-number {
            width: 24px;
            height: 24px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: 'Broad Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-top: 2px;
        }

        .question-content {
            font-family: 'Schibsted Grotesk', sans-serif;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .question-content strong {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Background elements */
        .prestataires-bg-element {
            position: absolute;
            opacity: 0.04;
            z-index: -1;
        }

        .prestataires-hexagon {
            width: 200px;
            height: 200px;
            background-image: 
                linear-gradient(30deg, var(--accent-purple) 12%, transparent 12.5%, transparent 87%, var(--accent-purple) 87.5%, var(--accent-purple)),
                linear-gradient(150deg, var(--accent-purple) 12%, transparent 12.5%, transparent 87%, var(--accent-purple) 87.5%, var(--accent-purple));
            background-size: 30px 50px;
            top: 20%;
            right: 8%;
            animation: rotate 60s infinite linear;
        }

        .prestataires-dots {
            width: 180px;
            height: 180px;
            background-image: radial-gradient(var(--accent-green) 2px, transparent 2px);
            background-size: 25px 25px;
            bottom: 15%;
            left: 5%;
            animation: float 40s infinite ease-in-out;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

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

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

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .competences-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .alertes-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .prestataires-section {
                padding: 80px 0;
            }
            
            .prestataires-title {
                font-size: 2.4rem;
            }
            
            .prestataires-description {
                font-size: 1.1rem;
            }
            
            .competence-card {
                padding: 32px 24px;
            }
            
            .alertes-section {
                padding: 32px 24px;
            }
            
            .question-category {
                padding: 24px 20px;
            }
        }

        @media (max-width: 576px) {
            .prestataires-container {
                padding: 0 16px;
            }
            
            .prestataires-title {
                font-size: 2rem;
            }
            
            .competence-card {
                padding: 24px 16px;
            }
            
            .alertes-section {
                padding: 24px 16px;
            }
        }

/* Bloc #5 */
:root {
        --primary-dark: #131521;
        --primary-light: #FAF2E5;
        --accent-green: #76E49B;
        --accent-purple: #423ABB;
        --text-light: #FAF2E5;
        --text-secondary: rgba(250, 242, 229, 0.7);
        --spacing-xs: 0.5rem;
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
        --spacing-xl: 8rem;
        --border-radius: 4px;
        --transition-normal: 0.3s ease;
    }

    /* Reset pour les éléments de cette section uniquement */
    .approche-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .approche-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(135deg, #0F1219 0%, #131521 50%, #1B1F2D 100%);
        overflow: hidden;
        z-index: 1;
        font-family: 'Schibsted Grotesk', sans-serif;
        color: var(--text-light);
        line-height: 1.6;
    }

    .approche-diagonal-top {
        position: absolute;
        top: -8vw;
        left: 0;
        width: 100%;
        height: 8vw;
        background-color: #131521;
        transform: skewY(-1.5deg);
        transform-origin: top left;
        z-index: -1;
        border-bottom: 1px solid rgba(118, 228, 155, 0.1);
    }

    .approche-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .approche-header {
        text-align: center;
        margin-bottom: 80px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards 0.1s;
    }

    .approche-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(118, 228, 155, 0.1);
        border: 1px solid rgba(118, 228, 155, 0.3);
        border-radius: 50px;
        padding: 8px 20px;
        margin-bottom: 16px;
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.9rem;
        color: var(--accent-green);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .approche-badge-icon {
        width: 16px;
        height: 16px;
        background: var(--accent-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .approche-badge-icon svg {
        width: 10px;
        height: 10px;
        fill: var(--primary-dark);
    }

    .approche-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: var(--text-light);
        position: relative;
        display: block;  /* Changé de inline-block à block */
        text-align: center;  /* Ajouté pour centrer */
    }

    .approche-title .highlight {
        background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .approche-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
        border-radius: 2px;
    }

    .approche-description {
        color: var(--text-secondary);
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .approche-description strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .approche-description .highlight {
        color: var(--accent-green);
        font-weight: 600;
    }

    /* Introduction Grid */
    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 80px;
        align-items: center;
    }

    .intro-content {
        opacity: 0;
        transform: translateX(-30px);
        animation: fadeInLeft 0.8s ease forwards 0.3s;
    }

    .intro-visual {
        opacity: 0;
        transform: translateX(30px);
        animation: fadeInRight 0.8s ease forwards 0.5s;
    }

    .intro-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .intro-text strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .intro-text .highlight {
        color: var(--accent-green);
        font-weight: 600;
    }

    /* Expertise Cards */
    .expertise-visual {
        background: linear-gradient(135deg, rgba(19, 21, 33, 0.9), rgba(27, 31, 45, 0.95));
        border: 1px solid rgba(118, 228, 155, 0.2);
        border-radius: 16px;
        padding: 40px 32px;
        position: relative;
        overflow: hidden;
    }

    .expertise-visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(118, 228, 155, 0.03), rgba(66, 58, 187, 0.03));
        z-index: -1;
    }

    .visual-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 24px;
        text-transform: uppercase;
        text-align: center;
    }

    .expertise-items {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .expertise-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: rgba(66, 58, 187, 0.05);
        border: 1px solid rgba(66, 58, 187, 0.1);
        border-radius: 8px;
        transition: all var(--transition-normal);
    }

    .expertise-item:hover {
        border-color: rgba(66, 58, 187, 0.3);
        background: rgba(66, 58, 187, 0.08);
    }

    .expertise-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .expertise-icon svg {
        width: 20px;
        height: 20px;
        fill: var(--primary-dark);
    }

    .expertise-text {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1rem;
        color: var(--text-light);
        font-weight: 600;
    }

    /* Méthodologie */
    .methodologie-section {
        margin-bottom: 80px;
    }

    .methodologie-header {
        text-align: center;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards 0.7s;
    }

    .methodologie-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .methodologie-subtitle {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto;
    }

    .process-timeline {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }

    .timeline-line {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
        z-index: 1;
    }

    .timeline-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
        z-index: 2;
    }

    .timeline-step {
        text-align: center;
        opacity: 0;
        transform: translateY(40px);
    }

    .timeline-step:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.9s; }
    .timeline-step:nth-child(2) { animation: fadeUp 0.8s ease forwards 1.1s; }
    .timeline-step:nth-child(3) { animation: fadeUp 0.8s ease forwards 1.3s; }
    .timeline-step:nth-child(4) { animation: fadeUp 0.8s ease forwards 1.5s; }

    .step-number {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background: var(--primary-dark);
        border: 4px solid var(--accent-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-green);
        transition: all var(--transition-normal);
        position: relative;
    }

    .timeline-step:hover .step-number {
        background: var(--accent-green);
        color: var(--primary-dark);
        transform: scale(1.1);
    }

    .step-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-light);
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .step-description {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .step-description strong {
        color: var(--text-light);
        font-weight: 600;
    }

    /* Différenciation */
    .differenciation-section {
        background: linear-gradient(135deg, rgba(19, 21, 33, 0.8), rgba(27, 31, 45, 0.9));
        border: 1px solid rgba(118, 228, 155, 0.2);
        border-radius: 20px;
        padding: 50px 40px;
        margin-bottom: 80px;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards 1.7s;
        position: relative;
        overflow: hidden;
    }

    .differenciation-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(118, 228, 155, 0.02), rgba(66, 58, 187, 0.02));
        z-index: -1;
    }

    .differenciation-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .differenciation-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .differenciation-subtitle {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

    .differenciation-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .diff-category {
        background: rgba(118, 228, 155, 0.03);
        border: 1px solid rgba(118, 228, 155, 0.1);
        border-radius: 12px;
        padding: 32px 24px;
        transition: all var(--transition-normal);
    }

    .diff-category:hover {
        border-color: rgba(118, 228, 155, 0.3);
        background: rgba(118, 228, 155, 0.05);
    }

    .diff-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .diff-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .diff-icon svg {
        width: 20px;
        height: 20px;
        fill: var(--primary-dark);
    }

    .diff-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-light);
        text-transform: uppercase;
    }

    .diff-content {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .diff-content strong {
        color: var(--text-light);
        font-weight: 600;
    }

    .diff-content .highlight {
        color: var(--accent-green);
        font-weight: 600;
    }

    /* CTA Section */
    .cta-section {
        background: rgba(66, 58, 187, 0.05);
        border: 1px solid rgba(66, 58, 187, 0.2);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards 1.9s;
    }

    .cta-title {
        font-family: 'Broad Sans', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .cta-description {
        font-family: 'Schibsted Grotesk', sans-serif;
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 28px;
        border-radius: 8px;
        font-family: 'Broad Sans', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all var(--transition-normal);
        text-decoration: none;
        min-width: 200px;
    }

    .cta-button.primary {
        background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
        color: var(--text-light);
        border: none;
    }

    .cta-button.secondary {
        background: transparent;
        border: 2px solid var(--accent-green);
        color: var(--text-light);
    }

    .cta-button:hover {
        transform: translateY(-3px);
    }

    .cta-button.primary:hover {
        box-shadow: 0 10px 20px rgba(118, 228, 155, 0.3);
    }

    .cta-button.secondary:hover {
        background: rgba(118, 228, 155, 0.1);
        border-color: var(--accent-purple);
    }

    .cta-button svg {
        width: 16px;
        height: 16px;
        margin-left: 8px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }

    .cta-button:hover svg {
        transform: translateX(3px);
    }

    /* Background elements */
    .approche-bg-element {
        position: absolute;
        opacity: 0.04;
        z-index: -1;
    }

    .approche-waves {
        width: 200px;
        height: 200px;
        background-image: repeating-linear-gradient(
            60deg,
            var(--accent-green) 0px,
            var(--accent-green) 3px,
            transparent 3px,
            transparent 20px
        );
        top: 25%;
        right: 5%;
        border-radius: 50%;
        animation: rotate 50s infinite linear;
    }

    .approche-grid {
        width: 180px;
        height: 180px;
        background-image: 
            linear-gradient(var(--accent-purple) 2px, transparent 2px),
            linear-gradient(90deg, var(--accent-purple) 2px, transparent 2px);
        background-size: 20px 20px;
        bottom: 20%;
        left: 8%;
        animation: float 35s infinite ease-in-out;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

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

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

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

    /* Media Queries */
    @media (max-width: 992px) {
        .intro-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .timeline-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .timeline-line {
            display: none;
        }
        
        .differenciation-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }

    @media (max-width: 768px) {
        .approche-section {
            padding: 80px 0;
        }
        
        .approche-title {
            font-size: 2.4rem;
        }
        
        .approche-description {
            font-size: 1.1rem;
        }
        
        .timeline-steps {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-button {
            width: 100%;
            max-width: 280px;
            min-width: unset;
        }
    }

    @media (max-width: 576px) {
        .approche-container {
            padding: 0 16px;
        }
        
        .approche-title {
            font-size: 2rem;
        }
        
        .expertise-visual {
            padding: 24px 20px;
        }
        
        .differenciation-section {
            padding: 32px 20px;
        }
        
        .cta-section {
            padding: 32px 20px;
        }
    }

/* Bloc #6 */
/* FAQ Sonorisation Section */
    .faq-sonorisation-section {
      position: relative;
      padding: 80px 0;
      background: #1B1F2D;
      overflow: hidden;
    }
    
    .faq-sonorisation-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }
    
    .faq-sonorisation-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 30% 20%, rgba(118, 228, 155, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(66, 58, 187, 0.06) 0%, transparent 50%);
      z-index: -1;
    }
    
    .faq-sonorisation-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .faq-sonorisation-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 2.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      color: #FFFFFF;
      position: relative;
      display: inline-block;
    }
    
    .faq-sonorisation-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, #76E49B, #423ABB);
      border-radius: 2px;
    }
    
    .faq-sonorisation-subtitle {
      color: rgba(250, 242, 229, 0.7);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .faq-sonorisation-subtitle strong {
      color: #FFFFFF;
      font-weight: 600;
    }
    
    .faq-sonorisation-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .faq-sonorisation-item {
      background: rgba(19, 21, 33, 0.6);
      border: 1px solid rgba(118, 228, 155, 0.1);
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-sonorisation-item:hover {
      border-color: rgba(118, 228, 155, 0.3);
      background: rgba(19, 21, 33, 0.8);
    }
    
    .faq-sonorisation-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
    }
    
    .faq-sonorisation-question:hover {
      background: rgba(118, 228, 155, 0.05);
    }
    
    .faq-sonorisation-question-text {
      font-family: 'Broad Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #FFFFFF;
      line-height: 1.3;
      flex: 1;
      text-transform: none;
    }
    
    .faq-sonorisation-toggle {
      width: 24px;
      height: 24px;
      background: rgba(118, 228, 155, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
      margin-left: 20px;
    }
    
    .faq-sonorisation-toggle svg {
      width: 12px;
      height: 12px;
      fill: #76E49B;
      transition: transform 0.3s ease;
    }
    
    .faq-sonorisation-item.active .faq-sonorisation-toggle {
      background: #76E49B;
    }
    
    .faq-sonorisation-item.active .faq-sonorisation-toggle svg {
      fill: #131521;
      transform: rotate(45deg);
    }
    
    .faq-sonorisation-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .faq-sonorisation-item.active .faq-sonorisation-answer {
      max-height: 500px;
    }
    
    .faq-sonorisation-answer-content {
      padding: 0 32px 32px;
      color: rgba(250, 242, 229, 0.7);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1rem;
      line-height: 1.7;
    }
    
    .faq-sonorisation-answer-content strong {
      color: #FFFFFF;
      font-weight: 600;
    }
    
    .faq-sonorisation-answer-content .highlight {
      color: #76E49B;
      font-weight: 600;
    }
    
    .faq-sonorisation-answer-list {
      list-style: none;
      padding: 0;
      margin: 16px 0;
    }
    
    .faq-sonorisation-answer-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
    }
    
    .faq-sonorisation-answer-item::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #76E49B;
      font-weight: bold;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .faq-sonorisation-title {
        font-size: 2.2rem;
      }
    }
    
    @media (max-width: 768px) {
      .faq-sonorisation-title {
        font-size: 2rem;
      }
      
      .faq-sonorisation-question {
        padding: 20px 24px;
      }
      
      .faq-sonorisation-answer-content {
        padding: 0 24px 24px;
      }
      
      .faq-sonorisation-question-text {
        font-size: 1.1rem;
      }
    }

/* Bloc #7 */
/* CTA Sonorisation Section */
    .cta-sonorisation-section {
      position: relative;
      padding: 80px 0;
      background: #1B1F2D;
      overflow: hidden;
    }
    
    .cta-sonorisation-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }
    
    .cta-sonorisation-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 30% 20%, rgba(118, 228, 155, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(66, 58, 187, 0.06) 0%, transparent 50%);
      z-index: -1;
    }
    
    .cta-sonorisation-final {
      text-align: center;
      padding: 60px 40px;
      background: linear-gradient(135deg, rgba(118, 228, 155, 0.08), rgba(66, 58, 187, 0.08));
      border-radius: 8px;
      border: 1px solid rgba(118, 228, 155, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .cta-sonorisation-bg-effect {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 20%, rgba(118, 228, 155, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(66, 58, 187, 0.1) 0%, transparent 40%);
      z-index: -1;
    }
    
    .cta-sonorisation-header {
      margin-bottom: 40px;
    }
    
    .cta-sonorisation-pretitle {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1rem;
      color: #76E49B;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
      font-weight: 600;
    }
    
    .cta-sonorisation-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      color: #FFFFFF;
      line-height: 1.1;
    }
    
    .cta-sonorisation-title .highlight {
      background: linear-gradient(135deg, #76E49B, #423ABB);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .cta-sonorisation-subtitle {
      color: rgba(250, 242, 229, 0.7);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }
    
    .cta-sonorisation-subtitle strong {
      color: #FFFFFF;
      font-weight: 600;
    }
    
    .cta-sonorisation-buttons-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    
    .cta-sonorisation-primary-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 36px;
      background: linear-gradient(135deg, #76E49B, #423ABB);
      color: #FFFFFF;
      border: none;
      border-radius: 8px;
      font-family: 'Broad Sans', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 1.1rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      min-width: 240px;
    }
    
    .cta-sonorisation-primary-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
    }
    
    .cta-sonorisation-primary-button:hover::before {
      left: 100%;
    }
    
    .cta-sonorisation-primary-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(118, 228, 155, 0.3);
    }
    
    .cta-sonorisation-primary-button svg {
      width: 18px;
      height: 18px;
      margin-left: 12px;
      fill: currentColor;
    }
    
    .cta-sonorisation-contact-info {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 32px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    
    .cta-sonorisation-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(250, 242, 229, 0.7);
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 0.95rem;
    }
    
    .cta-sonorisation-contact-icon {
      width: 20px;
      height: 20px;
      background: rgba(118, 228, 155, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #76E49B;
      flex-shrink: 0;
    }
    
    .cta-sonorisation-contact-icon svg {
      width: 10px;
      height: 10px;
      fill: currentColor;
    }
    
    .cta-sonorisation-reassurance {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .cta-sonorisation-reassurance-item {
      text-align: center;
      padding: 20px;
      background: rgba(118, 228, 155, 0.05);
      border-radius: 8px;
      border: 1px solid rgba(118, 228, 155, 0.1);
      transition: all 0.3s ease;
    }
    
    .cta-sonorisation-reassurance-item:hover {
      background: rgba(118, 228, 155, 0.08);
      border-color: #76E49B;
      transform: translateY(-2px);
    }
    
    .cta-sonorisation-reassurance-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #76E49B, #423ABB);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
    }
    
    .cta-sonorisation-reassurance-icon svg {
      width: 20px;
      height: 20px;
      fill: #131521;
    }
    
    .cta-sonorisation-reassurance-title {
      font-family: 'Broad Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: #FFFFFF;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    
    .cta-sonorisation-reassurance-text {
      font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 0.8rem;
      color: rgba(250, 242, 229, 0.7);
      line-height: 1.3;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .cta-sonorisation-title {
        font-size: 2.4rem;
      }
      
      .cta-sonorisation-buttons-container {
        gap: 16px;
      }
      
      .cta-sonorisation-contact-info {
        gap: 20px;
      }
    }
    
    @media (max-width: 768px) {
      .cta-sonorisation-title {
        font-size: 2rem;
      }
      
      .cta-sonorisation-buttons-container {
        flex-direction: column;
        gap: 16px;
      }
      
      .cta-sonorisation-primary-button {
        width: 100%;
        max-width: 300px;
      }
      
      .cta-sonorisation-contact-info {
        flex-direction: column;
        gap: 12px;
      }
      
      .cta-sonorisation-final {
        padding: 40px 24px;
      }
    }
