/* ===== RESET & BASE (unifié) ===== */
    .apropos-page * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .apropos-page {
        font-family: 'Open Sans', sans-serif;
        background: #f6eedc;
        color: #222222;
        line-height: 1.6;
    }

    .apropos-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ===== SECTIONS ===== */
    .apropos-section {
        padding: 80px 20px;
    }

    /* ===== TITRES (unifiés) ===== */
    .apropos-title {
        font-family: 'Abril Fatface', serif;
        font-size: 72px;
        color: #222222;
        margin-bottom: 60px;
        line-height: 1.2;
    }

    .apropos-title .highlight {
        color: #DD9933;
    }

    .apropos-subtitle {
        font-family: 'Abril Fatface', serif;
        font-size: 56px;
        color: #222222;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

    .apropos-subtitle .highlight {
        color: #DD9933;
    }

    /* ===== CARTES (style commun) ===== */
    .apropos-card {
        background: white;
        border-radius: 24px;
        padding: 60px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        position: relative;
        overflow: hidden;
        margin-bottom: 60px;
    }

    .apropos-card::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(221, 153, 51, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    /* ===== SECTION 1 : PROFIL ===== */
    .profil-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        background: #f6eedc;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #666666;
        transition: all 0.3s ease;
    }

    .badge:hover {
        background: linear-gradient(135deg, #DD9933 0%, #c4872d 100%);
        color: white;
        transform: translateY(-3px);
    }

    .badge svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    .profil-text {
        font-size: 18px;
        color: #666666;
        line-height: 1.9;
        position: relative;
        z-index: 1;
    }

    .profil-text p {
        margin-bottom: 20px;
    }

    .profil-text p:last-child {
        margin-bottom: 0;
    }

    .profil-text strong {
        color: #222222;
    }

    .profil-text .accent {
        color: #DD9933;
        font-weight: 600;
    }

    /* ===== SECTION 2 : QUALITÉS ===== */
    .qualites-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .qualite-card {
        background: white;
        border-radius: 20px;
        padding: 50px 35px;
        text-align: center;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .qualite-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #DD9933 0%, #c4872d 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .qualite-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(221, 153, 51, 0.15);
    }

    .qualite-card:hover::before {
        transform: scaleX(1);
    }

    .qualite-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f6eedc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .qualite-card:hover .qualite-icon {
        background: linear-gradient(135deg, #DD9933 0%, #c4872d 100%);
    }

    .qualite-icon img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        transition: filter 0.3s ease;
    }

    .qualite-card:hover .qualite-icon img {
        filter: brightness(0) invert(1);
    }

    .qualite-title {
        font-family: 'Abril Fatface', serif;
        font-size: 22px;
        color: #222222;
        margin-bottom: 20px;
    }

    .qualite-description {
        font-size: 18px;
        color: #666666;
        line-height: 1.7;
    }

    /* ===== SECTION 3 : PROJET PRO ===== */
    .projet-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .projet-card::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(221, 153, 51, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

    .projet-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #DD9933 0%, #c4872d 100%);
        border-radius: 50%;
        position: relative;
        animation: float 3s ease-in-out infinite;
        z-index: 1;
    }

    .projet-icon::before {
        content: '';
        position: absolute;
        width: 140px;
        height: 140px;
        border: 2px solid #DD9933;
        border-radius: 50%;
        opacity: 0.3;
        animation: pulse-ring 3s ease-in-out infinite;
    }

    .projet-icon::after {
        content: '';
        position: absolute;
        width: 160px;
        height: 160px;
        border: 1px solid #DD9933;
        border-radius: 50%;
        opacity: 0.15;
        animation: pulse-ring 3s ease-in-out infinite 0.5s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes pulse-ring {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.3;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.1;
        }
    }

    .projet-icon img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .objectifs-timeline {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

    .objectif-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .step-badge {
        padding: 12px 24px;
        background: #f6eedc;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #666666;
        transition: all 0.3s ease;
    }

    .step-badge.active {
        background: linear-gradient(135deg, #DD9933 0%, #c4872d 100%);
        color: white;
    }

    .step-label {
        font-size: 12px;
        color: #999999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .timeline-arrow {
        font-size: 24px;
        color: #DD9933;
    }

    .projet-text {
        font-size: 18px;
        color: #666666;
        max-width: 800px;
        margin-bottom: 40px;
        line-height: 1.9;
        position: relative;
        z-index: 1;
    }

    .projet-text p {
        margin-bottom: 20px;
    }

    .projet-text p:last-child {
        margin-bottom: 0;
    }

    .projet-text strong {
        color: #222222;
    }

    .projet-text .accent {
        color: #DD9933;
        font-weight: 600;
    }

    /* ===== BOUTON CTA ===== */
    .btn-cta {
        padding: 16px 40px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
        z-index: 1;
        background: linear-gradient(135deg, #DD9933 0%, #c4872d 100%);
        color: white !important;
        box-shadow: 0 4px 20px rgba(221, 153, 51, 0.35);
    }

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(221, 153, 51, 0.45);
        color: white !important;
    }

    .btn-cta svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
        .apropos-title {
            font-size: 56px;
        }

        .apropos-subtitle {
            font-size: 42px;
        }

        .apropos-card {
            padding: 50px 40px;
        }

        .qualites-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .qualites-grid .qualite-card:last-child {
            grid-column: span 2;
            max-width: 400px;
            margin: 0 auto;
        }

        .projet-icon {
            width: 100px;
            height: 100px;
        }

        .projet-icon img {
            width: 50px;
            height: 50px;
        }

        .projet-icon::before {
            width: 120px;
            height: 120px;
        }

        .projet-icon::after {
            width: 140px;
            height: 140px;
        }

        .objectifs-timeline {
            gap: 15px;
        }

        .step-badge {
            padding: 10px 18px;
            font-size: 13px;
        }
    }

    @media (max-width: 600px) {
        .apropos-title {
            font-size: 42px;
        }

        .apropos-subtitle {
            font-size: 32px;
        }

        .apropos-card {
            padding: 40px 25px;
        }

        .badge {
            padding: 10px 16px;
            font-size: 13px;
        }

        .qualites-grid {
            grid-template-columns: 1fr;
        }

        .qualites-grid .qualite-card:last-child {
            grid-column: span 1;
            max-width: none;
        }

        .qualite-card {
            padding: 40px 30px;
        }

        .qualite-icon {
            width: 80px;
            height: 80px;
        }

        .qualite-icon img {
            width: 40px;
            height: 40px;
        }

        .projet-icon {
            width: 90px;
            height: 90px;
        }

        .projet-icon img {
            width: 45px;
            height: 45px;
        }

        .objectifs-timeline {
            flex-direction: column;
            gap: 10px;
        }

        .timeline-arrow {
            transform: rotate(90deg);
        }

        .btn-cta {
            padding: 14px 32px;
            font-size: 15px;
        }
    }