/* process-steps.css - v1.0 */

.process-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 40px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px 28px;
    position: relative;
}

.process-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #0d9488;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step-icon {
    color: #0d9488;
    margin-bottom: 16px;
    margin-top: 8px;
}

.process-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 10px;
}

.process-step-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.process-step-connector {
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 20px;
    padding-top: 8px; 
}

.process-step-connector::after {
    content: '→';
    font-size: 32px;
    color: #0d9488;
    opacity: 0.8;
}

.process-cta {
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 32px;
    }
    .process-step-connector {
        width: auto;
        height: 20px;
        transform: rotate(90deg);
    }
}