/* ============================================
   Section Accompagnement (Process & Atouts)
   ============================================ */

.section-process {
    background: #ffffff;
    padding: 8rem 0;
}

/* Timeline Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
}

.process-step {
    position: relative;
    padding-top: 3rem;
    text-align: center;
}

/* Ligne connectrice */
.process-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #e6f1ff;
    z-index: 0;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #0a192f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 8px #fff; /* Contour blanc pour couper la ligne */
}

.step-title {
    font-size: 1.1rem;
    color: #0a192f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Grille Atouts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: #b78628;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #0a192f;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
    
    .process-steps::before {
        display: none; /* Cache la ligne sur tablette/mobile */
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

