/* Container principal */
    .labs-section {
        padding: 80px 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .labs-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        overflow-x: hidden;
    }

    /* Titre principal */
    .labs-title {
        font-family: 'Abril Fatface', serif;
        font-size: 72px;
        color: #222222;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .labs-title .highlight {
        color: #DD9933;
    }

    /* Description */
    .labs-description {
        font-size: 18px;
        color: #666666;
        max-width: 800px;
        margin-bottom: 50px;
        line-height: 1.8;
    }

    /* Carte principale */
    .labs-card {
        background: white;
        border-radius: 24px;
        padding: 80px 50px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Liseré orange en haut */
    .labs-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #DD9933, #c4872d, #DD9933);
    }

    /* Icône */
    .labs-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #f6eedc 0%, #e8dcc8 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
    }

    .labs-icon svg {
        width: 50px;
        height: 50px;
        fill: #DD9933;
    }

    /* Titre de la carte */
    .labs-card-title {
        font-family: 'Abril Fatface', serif;
        font-size: 36px;
        color: #222222;
        margin-bottom: 15px;
    }

    .labs-card-title .highlight {
        color: #DD9933;
    }

    /* Texte de la carte */
    .labs-card-text {
        font-size: 18px;
        color: #666666;
        max-width: 500px;
        margin: 0 auto 30px;
        line-height: 1.8;
    }

    /* Badge */
    .labs-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 25px;
        background: #f6eedc;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #DD9933;
    }

    .labs-badge svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    /* Animation de rotation */
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .spin-icon {
        animation: spin 3s linear infinite;
    }

    /* ==================== RESPONSIVE ==================== */

    /* Tablette (601px à 768px) */
    @media (min-width: 601px) and (max-width: 768px) {
        .labs-title {
            font-size: 48px;
        }

        .labs-description {
            font-size: 16px;
            margin-bottom: 40px;
        }

        .labs-card {
            padding: 60px 35px;
        }

        .labs-card-title {
            font-size: 30px;
        }

        .labs-card-text {
            font-size: 16px;
        }

        .labs-icon {
            width: 80px;
            height: 80px;
        }

        .labs-icon svg {
            width: 40px;
            height: 40px;
        }
    }

    /* Mobile (max 600px) */
    @media (max-width: 600px) {
        .labs-section {
            padding: 60px 15px;
        }

        .labs-title {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .labs-description {
            font-size: 15px;
            margin-bottom: 30px;
        }

        .labs-card {
            padding: 50px 25px;
            border-radius: 20px;
        }

        .labs-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
        }

        .labs-icon svg {
            width: 35px;
            height: 35px;
        }

        .labs-card-title {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .labs-card-text {
            font-size: 15px;
            margin-bottom: 25px;
        }

        .labs-badge {
            padding: 10px 20px;
            font-size: 13px;
            gap: 8px;
        }

        .labs-badge svg {
            width: 16px;
            height: 16px;
        }
    }