/* =========================================
   ATELIER.CSS - Design de la page Atelier
   ========================================= */
.page-header.bg-atelier {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), url('https://images.unsplash.com/photo-1620799140188-3b2a02fd9a77?q=80&w=2000&auto=format&fit=crop') center/cover;
    border-bottom: 1px solid #e2e8f0;
}

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

.technique-list {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.technique-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.text-primary {
    color: var(--primary);
    margin-right: 10px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
}

/* Ligne connectrice entre les étapes (bureau) */
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px var(--bg-offwhite);
}

.step h4 { margin-bottom: 10px; font-size: 20px; }
.step p { font-size: 15px; }